-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "@thi.ng/cspvm",
"version": "0.0.1",
"description": "TODO",
"repository": "https://github.com/thi-ng/cspvm",
"author": "Karsten Schmidt (https://thi.ng)",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"clean": "rm -rf zig-cache zig-out",
"start": "vite --open",
"build:wasm": "./build-wasm.sh",
"build:wasm-stats": "wasm-opcodecnt src/wasm/vm.wasm -o dev/vm.dist && wasm-opcodecnt src/wasm/vm-opt.wasm -o dev/vm-opt.dist",
"build": "tsc && vite build --base='./'",
"preview": "vite preview --host --open",
"test": "bun test src"
},
"devDependencies": {
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-html": "^3.2.2"
},
"dependencies": {
"@thi.ng/api": "^8.11.1",
"@thi.ng/expose": "^1.2.28",
"@thi.ng/logger": "^3.0.11",
"@thi.ng/wasm-api": "^1.5.2",
"@thi.ng/wasm-api-bindgen": "^0.5.2",
"bun-types": "^1.1.4"
},
"browsersList": [
"last 3 chrome versions"
],
"browser": {
"process": false
},
"keywords": [
"thing-umbrella",
"typescript"
]
}