forked from tamani-coding/webgpu-cube-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 704 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 704 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
{
"name": "typescript-quickstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run bundle && npm-run-all --parallel watch serve",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack",
"watch": "webpack --watch",
"serve": "cd dist && live-server",
"tsv": "tsc --version"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@webgpu/types": "0.1.6",
"gl-matrix": "^3.3.0"
}
}