-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 900 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
{
"name": "cap2ui5-docs",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Documentation for the cap2UI5 framework",
"homepage": "https://cap2ui5.github.io/docs/",
"repository": {
"type": "git",
"url": "git+https://github.com/cap2UI5/docs.git"
},
"bugs": {
"url": "https://github.com/cap2UI5/docs/issues"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"verify": "node scripts/verify-refs.mjs",
"check": "npm run verify && npm run docs:build",
"check:ci": "node scripts/verify-refs.mjs --require-checkout && node scripts/gen-samples.mjs --check && npm run docs:build",
"gen:samples": "node scripts/gen-samples.mjs"
},
"devDependencies": {
"vitepress": "^1.6.3"
}
}