-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 770 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 770 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
{
"name": "webgpu04-hello-triangle",
"version": "0.0.1",
"description": "Basically, the hello world for webgpu",
"main": "index.js",
"scripts": {
"start": "pnpm run build && pnpm run serve",
"serve": "live-server --cors",
"build": "webpack --config webpack.config.js",
"dev": "webpack serve --config webpack.config.js"
},
"keywords": [],
"author": "oneirocosm",
"license": "MIT",
"dependencies": {
"@types/node": "^18.11.18",
"@webgpu/types": "^0.1.24",
"gl-matrix": "^3.4.3",
"http-server": "^14.1.1",
"live-server": "^1.2.2",
"ts-loader": "^9.4.2",
"ts-shader-loader": "^2.0.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}