forked from lxchapu/astro-gyoza
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.36 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "blog-lanke",
"type": "module",
"version": "0.0.1",
"author": "lanke",
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"dev": "astro dev",
"build": "astro check && astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write .",
"new-friend": "node scripts/new-friend.js",
"new-post": "node scripts/new-post.js",
"new-project": "node scripts/new-project.js"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/markdown-remark": "^7.0.1",
"@astrojs/react": "^5.0.1",
"@astrojs/rss": "4.0.17",
"@astrojs/sitemap": "3.7.1",
"@tailwindcss/vite": "^4.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@shikijs/rehype": "^4.0.2",
"@swup/astro": "^1.8.0",
"@types/chroma-js": "^3.1.2",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@waline/client": "^3.13.0",
"astro": "^6.0.8",
"bilibili-bangumi-component": "^0.4.0",
"chroma-js": "^3.2.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"hastscript": "^9.0.1",
"iconify-icon": "^3.0.2",
"jotai": "^2.19.0",
"katex": "^0.16.41",
"livecodes": "^0.13.0",
"lodash-es": "^4.17.23",
"mdast-util-to-string": "^4.0.0",
"pagefind": "^1.4.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-toastify": "^11.0.5",
"reading-time": "^1.5.0",
"rehype-callouts": "^2.1.2",
"rehype-katex": "^7.0.1",
"remark-directive": "^4.0.0",
"remark-math": "^6.0.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@iconify-json/ri": "^1.2.10",
"@iconify/react": "^6.0.2",
"@iconify/types": "^2.0.0",
"@inquirer/prompts": "^8.3.2",
"@types/mdast": "^4.0.4",
"astro-icon": "^1.1.5",
"lint-staged": "^16.4.0",
"micromark-util-symbol": "^2.0.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1",
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx.astro,md,css,json}": "prettier --write"
}
}