-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 961 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 961 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
27
28
29
30
31
32
{
"name": "mandelbrot",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"yarn wasm:watch\" \"vite\"",
"build": "yarn wasm:build && tsc && vite build",
"preview": "vite preview",
"clean": "rm -rf dist && yarn wasm:clean",
"wasm:watch": "nodemon --ext ts --watch ./as --exec \"yarn wasm:build\"",
"wasm:debug": "asc as/assembly.ts --target debug",
"wasm:build": "asc as/assembly.ts --target release",
"wasm:clean": "rm src/wasm/assembly.*"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@webgpu/types": "^0.1.34",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"posthtml-expressions": "^1.11.1",
"posthtml-extend": "^0.6.5",
"posthtml-include": "^1.7.4",
"typescript": "^5.0.2",
"vite": "^4.3.9"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.1",
"assemblyscript": "^0.23.1",
"stimulus-vite-helpers": "^3.0.1"
}
}