-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
59 lines (59 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "webgpu-samples",
"version": "0.1.0",
"description": "Samples using the WebGPU API",
"license": "BSD-3-Clause",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/webgpu/webgpu-samples.git"
},
"scripts": {
"lint": "eslint --ext .ts,.js,.html src/ sample/ build/ .eslintrc.cjs rollup.config.js index.html",
"fix": "eslint --fix --ext .ts,.js,.html src/ sample/ build/ .eslintrc.cjs rollup.config.js index.html",
"build": "node build/tools/build.js",
"start": "node build/tools/serve.js",
"serve": "node build/tools/serve.js",
"server": "servez out",
"watch": "rollup -c -w",
"export": "npm run build"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/search": "^6.5.6",
"@codemirror/view": "^6.34.1",
"@uiw/codemirror-theme-github": "^4.23.6",
"@uiw/codemirror-theme-monokai": "^4.23.6",
"codemirror": "^6.0.1",
"dat.gui": "^0.7.9",
"showdown": "^2.1.0",
"stats.js": "github:mrdoob/stats.js#b235d9c",
"teapot": "^1.0.0",
"wgpu-matrix": "^3.3.0"
},
"devDependencies": {
"@babel/runtime": "^7.26.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "^1.0.8",
"@types/dat.gui": "^0.7.13",
"@types/showdown": "^2.0.6",
"@types/stats.js": "^0.17.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@webgpu/types": "^0.1.49",
"chokidar": "^4.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^11.0.0",
"prettier": "^2.8.8",
"rollup": "^4.24.1",
"rollup-plugin-copy": "^3.5.0",
"servez": "^2.2.4",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
}
}