-
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) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 801 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": "@opencodehub/docs",
"version": "0.0.0",
"private": true,
"description": "OpenCodeHub documentation site (Astro + Starlight)",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=24.15.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "NODE_ENV=production astro build && node scripts/inject-llm-nav.mjs",
"preview": "astro preview",
"check": "astro check",
"clean": "rm -rf dist .astro"
},
"dependencies": {
"@astrojs/starlight": "^0.40.0",
"astro": "^6.4.6",
"sharp": "^0.35.1"
},
"devDependencies": {
"playwright": "^1.60.0",
"rehype-mermaid": "^3.0.0",
"starlight-links-validator": "^0.24.1",
"starlight-llms-txt": "^0.10.0",
"starlight-page-actions": "^0.6.1"
}
}