-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "tengoping-blog",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build && node scripts/postbuild.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"check-links": "linkinator \"**/*.html\" --recurse --server-root ./dist --skip \"^https?://(?!localhost)\" --verbosity error"
},
"dependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@resvg/resvg-js": "^2.6.2",
"astro": "^5.18.1",
"astro-pagefind": "^1.8.6",
"satori": "^0.26.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"husky": "^9.1.7",
"linkinator": "^7.6.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.58.1"
},
"overrides": {
"fast-xml-parser": ">=5.5.7",
"h3": ">=1.15.9",
"defu": ">=6.1.5",
"vite": "^6.4.2"
},
"lint-staged": {
"*.{ts,mjs,js}": [
"eslint --fix",
"prettier --write"
],
"*.astro": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}