-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@example/blog",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"create:article": "tsx ./scripts/new-post.ts",
"create:til": "tsx ./scripts/generate-til",
"create:changelog": "tsx ./scripts/generate-changelog.ts",
"generate:bookmarks": "tsx --env-file=./.env ./scripts/generate-bookmarks-reader.ts"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"astro": "^5.1.1",
"dayjs": "^1.11.11",
"markdown-it": "^13.0.2",
"marked": "^15.0.4",
"sanitize-html": "^2.13.0",
"satori": "^0.10.14",
"shiki": "^1.10.3",
"simple-git": "^3.25.0"
},
"devDependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/react": "^4.1.2",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vercel": "^8.0.1",
"@types/hast": "^3.0.4",
"@types/markdown-it": "^12.2.3",
"@types/react": "^18.3.3",
"@types/sanitize-html": "^2.11.0",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"hastscript": "^9.0.0",
"markdownlint": "^0.35.0",
"mdast-util-to-string": "^4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rehype": "^13.0.1",
"rehype-katex": "^7.0.0",
"rehype-pretty-code": "^0.13.2",
"remark-math": "^6.0.0",
"slugify": "^1.6.6",
"tsx": "^3.14.0",
"unist-builder": "^4.0.0",
"unist-util-modify-children": "^4.0.0",
"unist-util-visit": "^5.0.0"
}
}