-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "daisysp-wasm",
"version": "0.1.0",
"private": true,
"description": "An example of building a WASM Web Audio Worket using DaisySP",
"author": "John Hooks <[email protected]> (https://johnhooks.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/johnhooks/daisysp-wasm.git"
},
"bugs": {
"url": "https://github.com/johnhooks/daisysp-wasm/issues"
},
"homepage": "https://github.com/johnhooks/daisysp-wasm#readme",
"scripts": {
"build": "scripts/build.sh",
"build:js": "scripts/build-js.sh && cp dist/*.js example/public",
"build:wasm": "scripts/build-wasm.sh",
"watch": "scripts/watch.js",
"website:dev": "yarn --cwd example dev",
"website:build": "yarn --cwd example build",
"website:preview": "yarn --cwd example preview"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.3.0",
"@rollup/plugin-typescript": "11.0.0",
"@types/audioworklet": "0.0.36",
"@types/emscripten": "1.39.6",
"@types/node": "18.11.18",
"chokidar": "^3.5.3",
"prettier": "2.8.3",
"rollup": "3.10.0",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"type": "module"
}