-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "yeahjunheoblog",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.11.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "npm run build && wrangler dev",
"astro": "astro",
"generate-types": "wrangler types",
"clean": "rm -rf dist .astro node_modules/.astro node_modules/.vite",
"deploy": "npm run clean && npm run build && wrangler deploy",
"casts:idle": "node scripts/trim-cast-idle.mjs",
"casts:split": "node scripts/split-cast.mjs"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.6",
"@astrojs/markdown-remark": "^7.2.0",
"@astrojs/mdx": "^6.0.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"asciinema-player": "^3.16.0",
"astro": "^6.1.1",
"katex": "^0.17.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@types/node": "^26.0.1",
"wrangler": "^4.79.0"
},
"volta": {
"node": "22.23.1"
},
"pnpm": {
"overrides": {
"vite": "^7",
"esbuild": "^0.28.1"
}
}
}