-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 2.51 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "yufan.me",
"version": "3.0.0",
"private": true,
"description": "The personal blog for Yufan Sheng",
"keywords": [
"blog",
"astro",
"yufan",
"ameho",
"syhily"
],
"homepage": "https://yufan.me",
"bugs": {
"url": "https://github.com/syhily/yufan.me/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/syhily/yufan.me.git"
},
"license": "MIT",
"author": {
"name": "Yufan Sheng",
"email": "[email protected]",
"url": "https://yufan.me"
},
"type": "module",
"scripts": {
"astro": "astro",
"build": "rimraf dist && rimraf .zeabur && astro check && astro build",
"dev": "astro dev",
"lint": "biome check --write . && prettier . --write",
"prepare": "npx husky",
"preview": "astro preview",
"start": "astro dev"
},
"lint-staged": {
"**/*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/node": "^9.0.0",
"@astrojs/rss": "^4.0.11",
"astro": "^5.1.3",
"drizzle-orm": "^0.38.3",
"fuse.js": "^7.0.0",
"glob": "^11.0.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"marked": "^15.0.6",
"pg": "^8.13.1",
"pinyin-pro": "^3.26.0",
"qrcode-svg": "^1.1.0",
"sharp": "^0.33.5",
"ultrahtml": "^1.5.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@biomejs/biome": "^1.9.4",
"@napi-rs/canvas": "^0.1.65",
"@shikijs/transformers": "^1.26.1",
"@types/lodash": "^4.17.14",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/qrcode-svg": "^1.1.5",
"@types/unist": "^3.0.3",
"aplayer-ts": "^2.5.1",
"astro-uploader": "^1.2.2",
"bootstrap": "^5.3.3",
"photoswipe": "^5.4.4",
"photoswipe-dynamic-caption-plugin": "^1.2.7",
"photoswipe-video-plugin": "^1.0.2",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.11",
"prettier-plugin-organize-imports": "^4.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"resize-sensor": "^0.0.6",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"unist-util-select": "^5.1.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.12.0"
},
"overrides": {
"astro-uploader": {
"opendal": "0.47.7"
}
}
}