Files
NexStudio/package.json
Javaxman 7aff1abcfb Aggiunge newsletter custom con D1, double opt-in e invio campagne.
Attiva il form footer, API subscribe/confirm/unsubscribe e endpoint admin protetti, riusando Resend per le email.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-28 23:23:19 +02:00

34 lines
1002 B
JSON

{
"name": "nexstudio",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"dev:fresh": "node -e \"require('fs').rmSync('node_modules/.vite',{recursive:true,force:true});\" && astro dev",
"build": "astro build",
"deploy:cf": "npm run build && wrangler deploy --config dist/server/wrangler.json",
"preview": "astro preview",
"astro": "astro",
"generate-types": "wrangler types",
"db:migrate:local": "wrangler d1 migrations apply nexstudio-newsletter --local",
"db:migrate:remote": "wrangler d1 migrations apply nexstudio-newsletter --remote"
},
"dependencies": {
"@astrojs/alpinejs": "^0.5.0",
"@astrojs/cloudflare": "^13.1.10",
"@astrojs/sitemap": "^3.7.2",
"@tailwindcss/vite": "^4.2.2",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.11",
"astro": "^6.1.8",
"tailwindcss": "^4.2.2",
"wrangler": "^4.83.0"
},
"overrides": {
"vite": "^7"
}
}