-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 805 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 805 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
{
"name": "fits3",
"version": "1.0.0",
"description": "A simple sky rendering example featuring wgpu basic setup",
"main": "pkg/wgpu-sky-rendering.js",
"scripts": {
"wasm-dev": "wasm-pack build --target web",
"wasm": "wasm-pack build --target web --release",
"build": "npm run wasm && vite build",
"build-dev": "npm run wasm-dev && vite build",
"dev": "cargo watch -s \"npm run wasm-dev\"",
"serve": "npm run build && vite",
"demo": "npm run wasm && vite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"vite": "^5.4.2",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vite-plugin-wasm-pack": "^0.1.12"
}
}