-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 884 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 884 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
{
"name": "@libar-dev/website",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.4.1",
"scripts": {
"sync": "node scripts/sync-content.mjs",
"sync:strict": "node scripts/sync-content.mjs --strict",
"test:sync": "node --test tests/sync-content.test.mjs",
"verify:build": "node scripts/verify-build-output.mjs",
"prebuild": "node scripts/sync-content.mjs",
"dev": "node scripts/sync-content.mjs && astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.37.6",
"astro": "^5.6.1",
"astro-mermaid": "^1.3.1",
"mermaid": "^11.12.3",
"sharp": "^0.34.2"
},
"devDependencies": {
"@libar-dev/delivery-process": "1.0.0-pre.2",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
}
}