-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
66 lines (66 loc) · 2.31 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
{
"name": "webgpufundamentals",
"version": "0.0.1",
"description": "Some webgpu Tutorials",
"main": "index.js",
"devDependencies": {
"@gfxfundamentals/lesson-builder": "github:gfxfundamentals/lesson-builder#v2.4.2",
"@gfxfundamentals/live-editor": "github:gfxfundamentals/live-editor#v1.5.1",
"@types/estree": "^1.0.5",
"@types/jsdom": "^21.1.7",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@typescript-eslint/typescript-estree": "^7.15.0",
"@webgpu/types": "^0.1.48",
"eslint": "^8.57.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-require-trailing-comma": "0.0.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.3.0",
"jquery": "^3.7.1",
"jsdom": "^25.0.1",
"ld-check-dependencies": "^1.2.1",
"load-grunt-tasks": "^5.1.0",
"minami": "^1.2.3",
"puppeteer": "^23.5.3",
"semver": "^7.6.3",
"servez": "^2.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"build": "ld-check-dependencies && grunt",
"build-ci": "grunt",
"watch": "ld-check-dependencies && grunt buildwatch",
"watch-no-check": "grunt buildwatch",
"start": "servez out",
"eslint": "ld-check-dependencies && grunt eslint",
"lint": "npm run eslint",
"pre-push": "ld-check-dependencies && grunt eslint && npm test",
"pre-build": "grunt eslint",
"test": "node test/puppeteer.mjs",
"test-links": "check-all-the-errors --follow-links=both --output=webgpufundamentals.check.json out \"*.html\"",
"generate-wgsl-function-reference": "node build/generate-wgsl-function-reference.js",
"check-external-refs": "node build/check-external-refs.js"
},
"repository": {
"type": "git",
"url": "git://github.com/gfxfundamentals/webgpufundamentals.git"
},
"keywords": [
"webgpu"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfxfundamentals/webgpufundamentals/issues"
},
"homepage": "https://github.com/gfxfundamentals/webgpufundamentals"
}