forked from torch2424/wasm-matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.41 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.41 KB
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
{
"name": "wasm-matrix",
"version": "0.0.2",
"description": "A Matrix effect in your terminal using AssemblyScript 🚀 and WASI 🧩 . Deployed to WAPM 📦 .",
"scripts": {
"postinstall": "npm run build",
"start": "wapm run wasm-matrix -l 24 -c 80",
"build": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug --use abort=wasiabort",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize --use abort=wasiabort",
"lint": "npx prettier --write assembly/*.ts",
"deploy": "npx np --no-publish",
"postdeploy": "echo \"Don't forget to bump the wapm.toml, and Publish to wapm using 'wapm publish'\""
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/torch2424/wasm-matrix.git"
},
"author": "Aaron turner",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/torch2424/wasm-matrix/issues"
},
"homepage": "https://github.com/torch2424/wasm-matrix#readme",
"dependencies": {},
"devDependencies": {
"assemblyscript": "github:AssemblyScript/assemblyscript",
"husky": "^2.3.0",
"np": "^5.0.1",
"prettier": "1.17.1",
"pretty-quick": "^1.10.0"
}
}