forked from splashkit/splashkit.io-starlight
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 KB
/
package.json
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
33
34
35
36
{
"name": "splashkit.io",
"type": "module",
"version": "0.9",
"scripts": {
"dev": "npm run setup && astro dev",
"start": "npm run setup && astro dev",
"build": "npm run setup && astro build",
"preview": "astro preview",
"astro": "astro",
"setup": "node ./scripts/json-files-script.cjs && node ./scripts/api-pages-script.cjs",
"generate-mdx": "node ./scripts/api-pages-script.cjs",
"generate-json": "node ./scripts/json-files-script.cjs",
"check-links": "SET CHECK_LINKS=true && npm run build && SET CHECK_LINKS=false"
},
"dependencies": {
"@astrojs/react": "^3.6.0",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/starlight": "^0.28.2",
"@astrojs/starlight-docsearch": "^0.3.0",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"astro": "^4.11.5",
"kleur": "4.1.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype-mathjax": "^6.0.0",
"remark-math": "^6.0.0",
"sharp": "^0.33.5",
"starlight-blog": "^0.14.1",
"starlight-links-validator": "^0.14.1"
},
"devDependencies": {
"accessible-astro-components": "^3.0.1"
}
}