-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dittytoy",
"version": "1.0.7",
"description": "",
"keywords": [
"Web Audio",
"Web Audio API",
"Synthesis",
"Audio Synthesis",
"Algorithmic Composition",
"Algorave",
"Playback",
"Music",
"DSP",
"Signal Processing",
"Generative Music",
"Dittytoy",
"Sonic Pi",
"Supercollider"
],
"repository": "[email protected]:reindernijhoff/dittytoy-package.git",
"author": "Reinder Nijhoff <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"dist/**/*",
"README.md"
],
"main": "./dist/dittytoy.umd.cjs",
"module": "./dist/dittytoy.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/dittytoy.js",
"require": "./dist/dittytoy.umd.cjs",
"types": "./index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"clean": "shx rm -rf dist node_modules/.cache/.tsbuildinfo",
"prepare-publish": "tsx ./scripts/preparePublish.ts"
},
"devDependencies": {
"@types/shelljs": "^0.8.15",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite": "^6.0.1"
},
"engines": {
"node": ">=20.0.0"
}
}