frontend/package.json
creations 2552d305da
All checks were successful
Code quality checks / biome (push) Successful in 7s
add build serve and start on other things
2025-05-22 18:44:56 -04:00

28 lines
685 B
JSON

{
"name": "atums.world.frontend",
"version": "0.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"start": "bun run build && bun src/serve.ts",
"dev": "bun src/index.ts --dev",
"build": "bun run src/build.ts",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lock"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.13",
"vite": "^6.3.5",
"vite-plugin-solid": "^2.11.6",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"@creations.works/logger": "^1.0.3",
"@solidjs/router": "^0.15.3",
"solid-js": "^1.9.5"
}
}