-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "webgpu_inspector",
"version": "0.9.0",
"description": "WebGPU Inspection Debugger",
"author": "Brendan Duncan",
"license": "MIT",
"homepage": "https://github.com/brendan-duncan/webgpu_inspector",
"repository": {
"type": "git",
"url": "https://github.com/brendan-duncan/webgpu_inspector"
},
"bugs": {
"url": "https://github.com/brendan-duncan/wgsl_reflect/issues"
},
"sideEffects": false,
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "npm run watch:js",
"watch:js": "rollup -c rollup.config.js --watch"
},
"keywords": [
"webgpu_inspector",
"webgpu",
"debugger",
"javascript",
"html5"
],
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"codemirror": "^6.0.1",
"thememirror": "^2.0.1",
"webgpu_recorder": "^1.2.0",
"wgsl_reflect": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"source-map": "^0.7.4"
}
}