-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "summer-docs",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"check": "npm run check:compatibility && npm run check:language && npm run check:capabilities && npm run check:policy-fixtures && npm run check:routes && node scripts/check-docs.mjs",
"check:capabilities": "node scripts/check-capabilities.mjs",
"check:policy-fixtures": "node scripts/check-policy-fixtures.mjs",
"check:compatibility": "node scripts/sync-engine-compatibility.mjs --check",
"check:external-links": "node scripts/check-external-links.mjs",
"check:language": "node scripts/check-language.mjs",
"check:routes": "node scripts/check-routes.mjs",
"generate:compatibility": "node scripts/sync-engine-compatibility.mjs",
"generate:routes": "node scripts/check-routes.mjs --write"
}
}