-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 947 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 947 Bytes
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
{
"name": "gitpush",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "vite build && pnpm run build:worker",
"build:worker": "esbuild src/index.ts --bundle --outfile=dist/worker.js --format=esm --platform=neutral --external:cloudflare:*",
"publish": "pnpm run build && wrangler deploy"
},
"devDependencies": {
"@cloudflare/vite-plugin": "0.1.7",
"@cloudflare/workers-types": "^4.20250224.0",
"@tailwindcss/forms": "^0.5.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.17",
"esbuild": "0.21.4",
"postcss": "8.4.35",
"tailwindcss": "3.4.1",
"typescript": "^5.0.4",
"vite": "^6.2.0",
"wrangler": "^3.111.0"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"packageManager": "pnpm@9.1.4",
"engines": {
"pnpm": "^9.1.4"
},
"pnpm": {
"overrides": {
"esbuild": "0.21.4"
}
}
}