-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
39
{
"name": "web-gpu-experiments",
"private": true,
"version": "0.0.0",
"type": "module",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18.15.0"
},
"scripts": {
"dev": "vite --port=5173 & open http://localhost:5173/web-gpu-experiments/output/",
"build": "tsc && vite build",
"static-serve": "npx http-server -p 8080 . & open http://localhost:8080/web-gpu-experiments/output/",
"start": "pnpm run build --outDir=web-gpu-experiments && pnpm run static-serve",
"prepare": "husky",
"fmt": "./node_modules/.bin/prettier . --write"
},
"devDependencies": {
"@types/dom-webcodecs": "^0.1.11",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@webgpu/types": "^0.1.60",
"eslint": "^8.57.0",
"fast-xml-parser": "^5.0.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "github:prettier/prettier",
"prettier-eslint": "^16.3.0",
"typescript": "5.7.3",
"vite": "6.1.1",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"typegpu": "0.4.3",
"wgpu-matrix": "3.3.0"
}
}