-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 829 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 829 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
{
"private": true,
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"docs:install": "npm ci --prefix website",
"docs:build": "npm run build --prefix website",
"dashboard:install": "npm ci --prefix packages/dashboard",
"dashboard:build": "npm run build --prefix packages/dashboard",
"dashboard:restore-notes": "npm run workflow:restore-notes --prefix packages/dashboard",
"dashboard:sync-notes": "npm run workflow:sync-notes --prefix packages/dashboard",
"dashboard:build-pages": "npm run workflow:build-pages --prefix packages/dashboard",
"dashboard:persist-notes": "npm run workflow:persist-notes --prefix packages/dashboard"
},
"workspaces": [
"packages/cli",
"packages/pr-report"
],
"devDependencies": {
"knip": "^6.9.0"
}
}