-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "webgpu-debug-helper",
"version": "0.1.5",
"description": "webgpu debug helper",
"main": "dist/0.x/webgpu-debug-helper.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run make",
"build-ci": "npm run build && node build/tools/prep-for-deploy.js",
"make": "rollup -c",
"check": "npm run lint",
"check-ci": "npm run pre-push",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" \"test/tests/**/*.{js,ts,tsx}\"",
"pre-push": "npm run lint && npm run build && npm run test",
"watch": "rollup -c -w",
"start": "node build/tools/serve.js",
"test": "node test/puppeteer.js",
"test-threejs": "node test/puppeteer.js --threejs",
"test-webgpu-samples": "node test/puppeteer.js --webgpu-samples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/webgpu-debug-helper.git"
},
"files": [
"dist/**"
],
"keywords": [
"webgpu",
"gpu",
"3d",
"graphics"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/webgpu-debug-helper/issues"
},
"homepage": "https://github.com/greggman/webgpu-debug-helper#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "^1.0.6",
"@types/node": "20.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@webgpu/types": "^0.1.42",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-one-variable-per-var": "^0.0.3",
"eslint-plugin-optional-comma-spacing": "^0.0.4",
"eslint-plugin-require-trailing-comma": "^0.0.1",
"express": "^4.19.2",
"markdown-it": "^13.0.2",
"mocha": "^10.4.0",
"puppeteer": "^22.12.1",
"rollup": "^4.18.0",
"servez": "^2.1.6",
"tslib": "^2.6.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"webgpu-utils": "^1.8.2"
}
}