clean up package.json scripts

This commit is contained in:
2026-04-06 00:24:28 -04:00
parent 807146e26e
commit 6f314684f0
2 changed files with 26 additions and 18 deletions
+5 -9
View File
@@ -5,20 +5,16 @@
"type": "module",
"scripts": {
"dev": "vite --host=0.0.0.0",
"ssldev": "VITE_USE_SSL=true vite --host=0.0.0.0",
"docker:local": "docker compose -f docker-compose.local.yml up --build",
"build": "tsc -b && vite build",
"format": "prettier . --write --ignore-path ../../.prettierignore",
"dev:ssl": "VITE_USE_SSL=true vite --host=0.0.0.0",
"build": "pnpm run spacetime:generate && tsc -b && vite build",
"lint": "eslint .",
"preview": "pnpm run build && wrangler dev",
"format": "prettier . --write",
"test": "vitest run",
"spacetime:generate": "spacetime generate --lang typescript --out-dir src/module_bindings --module-path spacetimedb",
"spacetime:publish:local": "spacetime publish --module-path spacetimedb --server local",
"spacetime:publish": "spacetime publish --module-path spacetimedb --server maincloud",
"spacetime:publish:local": "spacetime publish --module-path spacetimedb --server local",
"deploy:local": "docker compose -f docker-compose.local.yml up --build",
"deploy:maincloud": "docker compose -f docker-compose.maincloud.yml up --build",
"deploy:cloudflare": "wrangler deploy",
"deploy": "pnpm run build && wrangler deploy"
"deploy:cloudflare": "pnpm run build && wrangler deploy"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",