-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 733 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 733 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": "phenodocs",
"version": "0.1.0",
"private": true,
"description": "VitePress Federation Hub - Aggregate documentation from multiple projects",
"type": "module",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "markdownlint docs/**/*.md",
"check-links": "python3 ../main/scripts/check-docs-links.py"
},
"dependencies": {
"vitepress": "^1.5.0",
"vue": "^3.5.0"
},
"devDependencies": {
"markdownlint-cli": "^0.42.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"documentation",
"vitepress",
"federation",
"hub",
"multi-project"
],
"author": "Kush Team",
"license": "MIT"
}