-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "maxfu.ng",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.30.2",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"tsc": "tsc --noEmit",
"format": "pnpm exec prettier . --write",
"lint": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint . --fix",
"prepare": "husky install",
"deploy": "astro build && pnpm exec wrangler deploy"
},
"lint-staged": {
"*.{js,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"*.{json,css}": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@lucide/astro": "^0.576.0",
"@tailwindcss/vite": "^4.1.8",
"astro": "^6.1.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"clsx": "^2.1.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-astro": "^1.3.1",
"globals": "^16.2.0",
"husky": "^8.0.3",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.12",
"satori": "^0.24.1",
"tailwind-merge": "^3.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"wrangler": "^4.18.0"
}
}