-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1013 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1013 Bytes
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
{
"name": "solara",
"private": true,
"version": "1.0.0",
"description": "Solara: Sunfall — A browser roguelite RPG where every player death dims a shared sun. Run the daily dungeon, leave your grave on the living map, and fight to keep the light alive.",
"homepage": "https://vaultsparkstudios.com/solara/",
"type": "module",
"scripts": {
"dev": "vite",
"status": "node scripts/generate-public-status.mjs",
"build": "node scripts/generate-public-status.mjs && vite build",
"build:pages": "node scripts/generate-public-status.mjs && vite build && node scripts/postbuild-pages.mjs",
"smoke": "node scripts/smoke-runtime.mjs",
"verify:supabase": "node scripts/verify-supabase-hardening.mjs",
"test": "node --test tests/*.test.mjs",
"preview": "vite preview"
},
"dependencies": {
"@supabase/supabase-js": "^2.100.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.0.0"
}
}