-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
{
"name": "webgpu-utils",
"version": "1.9.3",
"description": "webgpu utilities",
"main": "dist/1.x/webgpu-utils.module.js",
"module": "dist/1.x/webgpu-utils.module.js",
"types": "dist/1.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",
"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": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@webgpu/types": "^0.1.49",
"eslint": "^8.57.1",
"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-require-trailing-comma": "^0.0.1",
"express": "^4.21.1",
"markdown-it": "^14.1.0",
"mocha": "^10.7.3",
"puppeteer": "^23.6.0",
"rollup": "^4.24.1",
"servez": "^2.2.4",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"wgsl_reflect": "^1.0.14"
}
}