-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "@codemcp/workflows-docs",
"version": "6.13.0",
"description": "Documentation site for Responsible Vibe MCP",
"type": "module",
"scripts": {
"prebuild": "mkdir -p public/workflows && cp ../../resources/workflows/*.yaml public/workflows/ && node scripts/generate-workflow-manifest.js",
"dev": "npm run prebuild && concurrently \"cd ../visualizer && npm run dev\" \"vitepress dev\"",
"build": "cd ../visualizer && npm run build && cd ../docs && npm run prebuild && vitepress build",
"preview": "vitepress preview",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@codemcp/workflows-visualizer": "workspace:*",
"d3": "^7.9.0",
"js-yaml": "^4.1.0",
"pako": "2.1.0",
"vue": "^3.5.22"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"@types/pako": "2.0.4",
"concurrently": "^8.2.2",
"typescript": "^6.0.0",
"vitepress": "^1.6.4"
}
}