|
6 | 6 | "scripts": { |
7 | 7 | "dev": "astro dev", |
8 | 8 | "build": "astro build", |
9 | | - "preview": "deno run --allow-net --allow-read --allow-env --unstable-bare-node-builtins --unstable-kv ./dist/server/entry.mjs", |
| 9 | + "preview": "pnpm build && wrangler dev", |
| 10 | + "check": "pnpm build && tsc && wrangler deploy --dry-run", |
| 11 | + "deploy": "astro build && wrangler deploy", |
| 12 | + "types": "wrangler types", |
10 | 13 | "format": "prettier . --write --ignore-unknown --cache --plugin=prettier-plugin-astro", |
11 | 14 | "format:check": "prettier . --check --cache", |
12 | 15 | "lint": "eslint .", |
|
21 | 24 | "github", |
22 | 25 | "profile", |
23 | 26 | "astro", |
24 | | - "deno", |
25 | | - "deno-kv", |
26 | 27 | "views-counter", |
27 | 28 | "counter" |
28 | 29 | ], |
|
33 | 34 | }, |
34 | 35 | "homepage": "https://views.igorkowalczyk.dev/", |
35 | 36 | "dependencies": { |
| 37 | + "@astrojs/cloudflare": "12.3.0", |
36 | 38 | "@astrojs/vue": "5.0.7", |
37 | | - "@deno/astro-adapter": "0.3.0", |
38 | 39 | "@tailwindcss/vite": "4.0.14", |
39 | | - "@types/canvas-confetti": "1.9.0", |
40 | 40 | "@vueuse/core": "13.0.0", |
41 | 41 | "astro": "5.5.3", |
42 | 42 | "astro-compressor": "1.0.0", |
43 | 43 | "badgen": "3.2.3", |
44 | 44 | "canvas-confetti": "1.9.3", |
45 | 45 | "class-variance-authority": "0.7.1", |
46 | 46 | "clsx": "2.1.1", |
47 | | - "eslint-plugin-vue": "10.0.0", |
48 | 47 | "lucide-vue-next": "0.483.0", |
49 | 48 | "tailwind-merge": "3.0.2", |
50 | 49 | "tailwindcss": "4.0.14", |
|
54 | 53 | "@igorkowalczyk/eslint-config": "3.0.7", |
55 | 54 | "@igorkowalczyk/prettier-config": "3.0.7", |
56 | 55 | "@tailwindcss/forms": "0.5.10", |
| 56 | + "@types/canvas-confetti": "1.9.0", |
| 57 | + "@types/node": "22.13.11", |
57 | 58 | "eslint": "9.22.0", |
| 59 | + "eslint-plugin-astro": "^1.3.1", |
| 60 | + "eslint-plugin-vue": "10.0.0", |
58 | 61 | "prettier": "3.5.3", |
59 | 62 | "prettier-plugin-astro": "0.14.1", |
60 | 63 | "prettier-plugin-tailwindcss": "0.6.11", |
61 | | - "typescript": "5.8.2" |
| 64 | + "typescript": "5.8.2", |
| 65 | + "wrangler": "4.3.0" |
62 | 66 | }, |
63 | 67 | "packageManager": "pnpm@10.6.4", |
64 | 68 | "pnpm": { |
65 | 69 | "onlyBuiltDependencies": [ |
66 | 70 | "esbuild", |
67 | | - "sharp" |
| 71 | + "sharp", |
| 72 | + "workerd" |
68 | 73 | ] |
69 | 74 | } |
70 | 75 | } |
0 commit comments