-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "blog",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"check": "biome check app",
"check:fix": "biome check --write --unsafe app",
"create": "bun ./scripts/create-article.ts",
"preview": "vite build --mode client && vite build && wrangler pages dev --kv=LIKES",
"deploy": "tsc --noEmit && vite build --mode client && vite build && wrangler pages deploy"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"hono": "^4.6.15",
"honox": "^0.1.28",
"satori": "^0.12.0"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241230.0",
"@hono/vite-cloudflare-pages": "^0.4.2",
"@hono/vite-dev-server": "^0.17.0",
"@hono/vite-ssg": "^0.1.0",
"@mdx-js/rollup": "^3.1.0",
"@radix-ui/colors": "^3.0.0",
"@types/bun": "^1.1.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.3",
"@types/prompts": "^2.4.9",
"autoprefixer": "^10.4.20",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prompts": "^2.4.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"shiki": "^1.24.4",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.17",
"tocbot": "^4.32.2",
"vite": "^6.0.6",
"vite-plugin-sitemap": "^0.7.1",
"windy-radix-palette": "^2.0.0-beta.7",
"wrangler": "^3.99.0"
}
}