-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 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
55
56
57
58
{
"name": "docs",
"version": "2.0.0",
"description": "The handlebars documentation site",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"docs:dev": "vitepress dev src",
"docs:build": "vitepress build src",
"docs:preview": "vitepress preview src",
"format": "prettier --write \"src/**/*.{js,css,json,md,vue}\"",
"lint": "prettier --check \"src/**/*.{js,css,json,md,vue}\"",
"lint-staged": "lint-staged",
"test": "vitest",
"codemirror:lang-handlebars": "lezer-generator src/.vitepress/components/playground/lib/codemirror-languages/handlebars.grammar -o src/.vitepress/components/playground/lib/codemirror-languages/handlebars.parser.js",
"codemirror:lang-js-object": "lezer-generator src/.vitepress/components/playground/lib/codemirror-languages/js-object.grammar -o src/.vitepress/components/playground/lib/codemirror-languages/js-object.parser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/handlebars-lang/docs.git"
},
"bugs": {
"url": "https://github.com/handlebars-lang/docs/issues"
},
"homepage": "https://github.com/handlebars-lang/docs#readme",
"dependencies": {
"@codemirror/commands": "^6.8.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/language": "^6.10.8",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.4",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"codemirror": "^6.0.1",
"handlebars": "^4.7.9",
"json5": "^2.2.3",
"p-debounce": "^5.0.0",
"prettier": "^3.5.0",
"semver": "^7.7.1",
"shiki": "^4.0.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@lezer/generator": "^1.7.2",
"@lezer/lr": "^1.4.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"vite-plugin-static-copy": "^3.1.4",
"vitepress": "^1.6.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,css,json,md,vue}": "npm run format"
}
}