-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (47 loc) · 1.13 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-devtools",
"version": "0.0.1",
"description": "WebGPU devtools browser extension",
"main": "dist/webgpu-devtools.bundle.js",
"keywords": [
"browser",
"browser-extension",
"chrome",
"chrome-extension",
"debug",
"debugger",
"typescript",
"webext",
"webextension",
"webgpu"
],
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takahirox/webgpu-devtools.git"
},
"author": "Takahiro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/takahirox/webgpu-devtools/issues"
},
"homepage": "https://github.com/takahirox/webgpu-devtools#readme",
"dependencies": {
"codemirror": "^5.65.12"
},
"devDependencies": {
"@types/chrome": "^0.0.224",
"@types/codemirror": "^5.60.7",
"@webgpu/types": "^0.1.27",
"css-loader": "^6.7.3",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}