-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
39
40
{
"name": "fun10165.github.io",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"assets:sync": "node scripts/sync-content-assets.mjs",
"dev": "npm run assets:sync && astro dev",
"build": "node scripts/snapshot-posts.mjs && npm run assets:sync && astro build",
"preview": "astro preview",
"check": "node scripts/snapshot-posts.mjs --check && npm run assets:sync && astro check",
"build:blog": "npm run build",
"check:blog": "npm run check && astro build"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"astro": "^7.1.1",
"gray-matter": "^4.0.3",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"typescript": "^6.0.3"
}
}