forked from GrantEaton/WASM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 810 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 810 Bytes
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
{
"name": "WASM",
"version": "1.0.0",
"description": "testing assemblyscript",
"main": "index.js",
"scripts": {
"test": "te4st",
"asbuild:wasi": "asc assembly/index.ts -b build/wasi.wasm -t build/wasi.wat --runtime half",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:watch": "onchange -i 'assembly/**/*' -- npm run asbuild",
"serve-demo": "static-server"
},
"author": "you, idiot",
"license": "ISC",
"dependencies": {
"@assemblyscript/loader": "^0.17.2"
},
"devDependencies": {
"as-wasi": "^0.4.3",
"assemblyscript": "^0.17.2",
"benchmark": "^2.1.4",
"static-server": "^2.2.1"
}
}