feat: initial app

This commit is contained in:
2026-05-10 03:06:54 +07:00
parent 23be44dbe0
commit d5b92cc9a4
95 changed files with 8104 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@pien-studio/api",
"private": true,
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist",
"start": "bun run dist/index.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@pien-studio/types": "workspace:*",
"elysia": "^1.1.25",
"zod": "^4.4.3"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}