initial commit

This commit is contained in:
2025-12-31 15:33:16 -05:00
commit 4641e7d0ef
51 changed files with 4779 additions and 0 deletions

26
frontend/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "aethera",
"private": true,
"scripts": {
"dev": "bun build src/main.ts --outdir public/dist --target browser --watch & tailwindcss -i styles.css -o public/dist/styles.css --watch",
"build": "bun build src/main.ts --outdir public/dist --target browser && tailwindcss -i styles.css -o public/dist/styles.css --minify",
"lint": "eslint ./src/**"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/alpinejs": "^3.13.11",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"alpinejs": "^3.15.3",
"highlight.js": "^11.11.1",
"marked": "^17.0.1",
"marked-highlight": "^2.2.3"
}
}