feat: initial lunarfront-manager app

This commit is contained in:
Ryan Moon
2026-04-03 06:23:56 -05:00
commit 8287fbf5b8
16 changed files with 793 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "lunarfront-manager",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts"
},
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.5.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@fastify/static": "^9.0.0",
"fastify": "^5.8.4",
"zod": "^4.3.6"
}
}