first commit

This commit is contained in:
creations 2025-05-18 19:12:34 -04:00
commit 25e7da24e6
Signed by: creations
GPG key ID: 8F553AA4320FC711
17 changed files with 300 additions and 0 deletions

28
package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "atums.world.frontend",
"version": "0.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"dev": "bun src/index.ts --dev",
"build": "vite build",
"serve": "vite preview",
"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",
"solid-js": "^1.9.5"
}
}