forked from webgpu/webgpufundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "webgpufundamentals",
"version": "0.0.1",
"description": "Some webgpu Tutorials",
"main": "index.js",
"devDependencies": {
"@gfxfundamentals/lesson-builder": "github:gfxfundamentals/lesson-builder#v2.1.2",
"@gfxfundamentals/live-editor": "github:gfxfundamentals/live-editor#v1.3.1",
"@types/estree": "^1.0.0",
"@types/jsdom": "^21.1.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@typescript-eslint/typescript-estree": "^5.56.0",
"@webgpu/types": "^0.1.30",
"eslint": "^8.36.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.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.1",
"jquery": "^3.6.4",
"jsdom": "^21.1.1",
"ld-check-dependencies": "^1.2.1",
"load-grunt-tasks": "^5.1.0",
"minami": "^1.2.3",
"semver": "^7.3.8",
"servez": "^1.14.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"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",
"pre-push": "ld-check-dependencies && grunt eslint",
"pre-build": "grunt eslint",
"test": "check-all-the-errors --follow-links=both --output=webgpufundamentals.check.json out \"*.html\"",
"generate-wgsl-function-reference": "node build/generate-wgsl-function-reference.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"
}