-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 744 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
{
"name": "iceferryling-astro-blog",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "astro dev",
"prebuild": "npm run sync:game",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"clean": "node ./scripts/clean.mjs",
"rebuild": "npm run clean && npm run build",
"sync:game": "node ./scripts/sync-game.mjs"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/sitemap": "^3.1.6",
"astro": "^5.2.0",
"gray-matter": "^4.0.3",
"katex": "^0.16.44",
"marked": "^12.0.2",
"marked-katex-extension": "^5.1.7",
"pinyin-pro": "^3.28.0",
"shiki": "^1.29.0",
"typescript": "^5.9.3"
}
}