forked from greggman/webgpu-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "webgpu-utils",
"version": "0.15.0",
"description": "webgpu utilities",
"main": "dist/0.x/webgpu-utils.module.js",
"module": "dist/0.x/webgpu-utils.module.js",
"types": "dist/0.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": "rollup -c rollup.config.js -w",
"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.2.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@tsconfig/recommended": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@webgpu/types": "^0.1.34",
"eslint": "^8.46.0",
"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.18.2",
"markdown-it": "^13.0.1",
"mocha": "^10.2.0",
"puppeteer": "^21.0.1",
"rollup": "^3.27.1",
"tslib": "^2.6.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"wgsl_reflect": "github:brendan-duncan/wgsl_reflect#713ad94"
}
}