-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.04 KB
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
{
"name": "webgpu-utils",
"version": "2.0.3",
"description": "webgpu utilities",
"main": "dist/2.x/webgpu-utils.module.js",
"module": "dist/2.x/webgpu-utils.module.js",
"types": "dist/2.x/webgpu-utils.d.ts",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run make && npm run docs && npm run makeindex",
"build-ci": "npm run build && node build/tools/prep-for-deploy.js",
"make": "rollup -c && node build/tools/fixup.d.ts.js",
"check": "npm run lint",
"check-ci": "npm run pre-push",
"docs": "typedoc --disableSources src/webgpu-utils.ts",
"makeindex": "node build/tools/makeindex.js",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"pre-push": "npm run lint && npm run build && npm run test",
"watch": "rollup -c -w",
"serve": "servez",
"start": "node build/tools/serve.js",
"test": "node test/puppeteer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/webgpu-utils.git"
},
"files": [
"dist/**"
],
"keywords": [
"webgpu",
"gpu",
"3d",
"graphics"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/webgpu-utils/issues"
},
"homepage": "https://github.com/greggman/webgpu-utils#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@tsconfig/recommended": "^1.0.13",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@webgpu/types": "^0.1.69",
"eslint": "^10.1.0",
"express": "^5.2.1",
"globals": "^17.4.0",
"markdown-it": "^14.1.1",
"mocha": "^11.7.5",
"puppeteer": "^24.37.5",
"rollup": "^4.60.0",
"servez": "^2.4.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"wgsl_reflect": "github:brendan-duncan/wgsl_reflect#7ea42bc30920f0244ade6b0d1ab7fc7ab6f2e95b"
}
}