-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "npm run build",
"preview": "vite preview",
"deploy": "vite build && wrangler pages deploy dist",
"purgecache": "bash -c 'set -a && source .env.purgecache && curl -s -X POST \"https://api.cloudflare.com/client/v4/zones/$CLOUDFLARE_ZONE_ID/purge_cache\" -H \"Authorization: Bearer $CLOUDFLARE_API_TOKEN\" -H \"Content-Type: application/json\" -d \"{\\\"hosts\\\":[\\\"$PURGE_DOMAIN\\\"]}\"'"
},
"dependencies": {
"clsx": "^2.1.1",
"preact": "^10.28.4"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.3",
"@tailwindcss/vite": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"eslint-config-preact": "^2.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@7.3.1",
"vite-bundle-analyzer": "^1.3.6",
"vite-plugin-singlefile": "^2.3.0",
"wrangler": "^4.76.0"
},
"eslintConfig": {
"extends": "preact"
}
}