forked from LadybugDB/ladybug-docs
-
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) · 694 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 694 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
{
"name": "ladybug-docs",
"type": "module",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "npm run generate-llms && astro build",
"preview": "astro preview",
"astro": "astro",
"check-links": "CHECK_LINKS=true astro build",
"generate-llms": "node scripts/generate-llms.cjs",
"update-version": "node scripts/update-version.cjs"
},
"dependencies": {
"@astrojs/markdown-remark": "^6.3.1",
"@astrojs/sitemap": "^3.3.0",
"@astrojs/starlight": "^0.32.5",
"astro": "^5.5.6",
"sharp": "^0.33.5",
"starlight-links-validator": "^0.14.3"
},
"devDependencies": {
"gray-matter": "^4.0.3"
}
}