-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "webgpu-debugger",
"version": "0.0.1",
"description": "WebGPU debugger",
"main": "dist/webgpu-debugger-cjs.js",
"module": "dist/webgpu-debugger.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"check": "npm run lint && node check.js",
"check-ci": "npm run check",
"fix": "eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"rollup-watch": "rollup -c -w",
"start": "rollup -c rollup.config.js -w",
"test": "node test/puppeteer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webgpu/webgpu-debugger.git"
},
"keywords": [
"WebGPU",
"GPU",
"WGSL"
],
"author": "Corentin Wallez",
"license": "MIT",
"bugs": {
"url": "https://github.com/webgpu/webgpu-debugger/issues"
},
"homepage": "https://github.com/webgpu/webgpu-debugger#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@webgpu/types": "^0.1.23",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-google-camelcase": "^0.0.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-one-variable-per-var": "^0.0.3",
"eslint-plugin-optional-comma-spacing": "^0.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-require-trailing-comma": "^0.0.1",
"express": "^4.18.2",
"flexlayout-react": "^0.7.5",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"puppeteer": "^19.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"rollup": "^3.7.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}