-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.43 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
{
"private": true,
"type": "module",
"scripts": {
"test": "npm run asbuild:untouched && ts-mocha -r esm -p tsconfig.json src/test/**/*.test.ts",
"asbuild:untouched": "asc ./node_modules/as-bind/lib/assembly/as-bind.ts src/wasm/index.ts --config src/wasm/asconfig.json --target debug",
"asbuild:optimized": "asc ./node_modules/as-bind/lib/assembly/as-bind.ts src/wasm/index.ts --config src/wasm/asconfig.json --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"build": "npm run build:untouched && npm run build:optimized",
"build:untouched": "npm run asbuild:untouched && rollup --config",
"build:optimized": "npm run asbuild:optimized && rollup --config",
"start": "npm run asbuild:untouched && cross-env SERVE=1 rollup --config --watch"
},
"dependencies": {
"@assemblyscript/loader": "^0.14.12",
"as-bind": "^0.4.1",
"tone": "^14.7.58"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"assemblyscript": "^0.14.12",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"esm": "^3.2.25",
"mocha": "^8.1.3",
"rollup": "^2.23.0",
"rollup-plugin-serve": "^1.0.4",
"serve": "^11.3.2",
"ts-mocha": "^7.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
}
}