feat: worker script, npm commands, complete setup docs - READY TO USE

This commit is contained in:
cawcenter
2025-12-15 01:58:55 -05:00
parent 07cf8342ee
commit 80236e4d56
3 changed files with 239 additions and 4 deletions

View File

@@ -1,13 +1,17 @@
```json
{
"name": "spark-god-mode",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "node ./dist/server/entry.mjs",
"dev": "astro dev --host 0.0.0.0 --port 4322",
"start": "node dist/server/entry.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"test": "vitest",
"worker": "node scripts/start-worker.js",
"test:campaign": "node scripts/test-campaign.js"
},
"dependencies": {
"@astrojs/node": "^8.2.6",
@@ -101,4 +105,4 @@
"vite-plugin-compression": "^0.5.1",
"vite-plugin-inspect": "^11.3.3"
}
}
}