-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "stdpi",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "bun@1.3.10",
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"zod": "^3.25.76"
},
"scripts": {
"test": "vitest",
"dev": "astro dev",
"build": "bun ./scripts/generate-og.tsx && astro build",
"gen:og": "bun ./scripts/generate-og.tsx",
"preview": "astro preview",
"launch": "wrangler deploy",
"preview:workers": "wrangler dev",
"fmt": "biome format . --write",
"lnt": "biome lint . --write --unsafe",
"chk": "biome check . --write"
},
"devDependencies": {
"@astrojs/sitemap": "^3.7.0",
"@astrojs/ts-plugin": "^1.10.6",
"@biomejs/biome": "^2.4.2",
"@takumi-rs/image-response": "^0.68.10",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^5.17.3",
"cross-env": "^10.1.0",
"sass": "^1.97.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"wrangler": "^4.67.0",
"zod": "^3.25.76"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"bootstrap-icons": "^1.13.1",
"canvas-confetti": "^1.9.4",
"pixelarticons": "^1.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5"
}
}