-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "tour-of-wgsl",
"version": "0.1.0",
"description": "A simple tour of WGSL static site generator.",
"main": "index.js",
"repository": "https://github.com/webmaven/tour-of-wgsl",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "vite build && ([ -f venv/bin/properdocs ] && venv/bin/properdocs build || properdocs build)",
"serve": "vite build && ([ -f venv/bin/properdocs ] && venv/bin/properdocs serve || properdocs serve)",
"docs": "typedoc",
"lint": "eslint . && node utils/lint-markdown.js",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"node utils/lint-markdown.js",
"prettier --write"
],
"*.{scss,json,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.7",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.1",
"@iizukak/codemirror-lang-wgsl": "^0.3.0",
"@types/codemirror": "^5.60.7",
"@types/node": "^25.9.3",
"@typescript-eslint/parser": "^8.61.0",
"@webgpu/types": "^0.1.70",
"codemirror": "^6.0.2",
"eslint": "^10.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"mermaid": "^11.15.0",
"prettier": "^3.8.4",
"sass-embedded": "^1.100.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"playwright": "^1.49.0"
}
}