forked from Li-Jia-Jun/WebGPU-Butterfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
42
43
44
45
46
47
{
"name": "webgpu-seed",
"version": "0.1.0",
"description": "🔺 A simple hello triangle example introducing WebGPU.",
"main": "dist/main.js",
"scripts": {
"start": "npm i && npm run build && npm run dev",
"dev": "http-server",
"build": "cross-env NODE_ENV=production ts-node webpack.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alaingalvan/webgpu-seed.git"
},
"keywords": [
"webgpu",
"webgl",
"example",
"seed",
"types",
"typescript"
],
"author": "Alain Galvan",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/alaingalvan/webgpu-seed/issues"
},
"homepage": "https://github.com/alaingalvan/webgpu-seed#readme",
"devDependencies": {
"@types/node": "^17.0.x",
"@webgpu/types": "^0.1.18",
"clean-webpack-plugin": "^4.0.x",
"cross-env": "^7.0.x",
"gltf-loader-ts": "^0.3.1",
"http-server": "^14.1.1",
"ts-loader": "^9.3.x",
"ts-node": "^10.8.x",
"typescript": "^4.7.x",
"webpack": "^5.73.x"
},
"dependencies": {
"dat-gui": "^0.5.0",
"dat.gui": "^0.7.9",
"gl-matrix": "^3.4.3",
"stats-js": "^1.0.1"
}
}