-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 885 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
{
"type": "module",
"scripts": {
"site:build": "npm --prefix website run build",
"site:check": "npm --prefix website run check",
"site:sync-docs": "npm --prefix website run sync-docs",
"site:sync-static": "npm --prefix website run sync-static",
"site:docusaurus:build": "npm --prefix website-docusaurus run build",
"site:docusaurus:check": "npm --prefix website-docusaurus run check",
"site:docusaurus:sync-docs": "npm --prefix website-docusaurus run sync-docs",
"site:docusaurus:sync-static": "npm --prefix website-docusaurus run sync-static",
"test": "node --test --experimental-strip-types test/*.test.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "24.0.0",
"ajv": "8.18.0"
},
"dependencies": {
"typescript": "5.9.3",
"yaml": "2.8.3"
},
"resolutions": {
"fast-uri": "3.1.2"
}
}