-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 964 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
33
34
35
36
37
38
{
"name": "starlight",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"refresh:bangumi": "node ./scripts/fetch-bangumi.mjs",
"build": "pnpm run refresh:bangumi && astro build",
"build:functions": "tsc -p tsconfig.functions.json",
"deploy": "pnpm run check && node ./scripts/deploy.mjs",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/internal-helpers": "0.8.0",
"@astrojs/rss": "^4.0.18",
"@astrojs/starlight": "^0.38.3",
"astro": "^6.1.5",
"sharp": "^0.34.2",
"starlight-theme-rapide": "^0.5.2"
},
"devDependencies": {
"katex": "^0.16.22",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"typescript": "^5.9.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}