Files
Pien-Studio/apps/api/package.json
T

22 lines
481 B
JSON
Raw Normal View History

2026-05-10 03:06:54 +07:00
{
"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": {
2026-05-31 03:03:49 +07:00
"@pien-studio/contracts": "workspace:*",
2026-05-10 03:06:54 +07:00
"elysia": "^1.1.25",
"zod": "^4.4.3"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^7.0.2",
2026-05-10 03:06:54 +07:00
"vitest": "^4.1.5"
}
}