-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 888 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 888 Bytes
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
{
"name": "tamcpp-exp-vitepress",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev site",
"check:links": "python3 scripts/check_links.py",
"build": "pnpm check:links && tsx scripts/build.ts",
"build:single": "pnpm check:links && vitepress build site",
"preview": "vitepress preview site",
"hooks:install": "scripts/setup_precommit.sh",
"coverage": "python3 scripts/coverage.py",
"coverage:update": "python3 scripts/coverage.py --update"
},
"devDependencies": {
"@dhlx/vitepress-plugin-drawio": "^0.0.10",
"@types/node": "^25.6.2",
"markdown-it-mathjax3": "^4.3.2",
"mermaid": "^10.9.6",
"tsx": "^4.21.0",
"vitepress": "^1.6.4",
"vue": "^3.5.34"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"minisearch": "^7.2.0"
}
}