Files
Kyoo/api/package.json
2025-01-10 12:16:31 +01:00

18 lines
356 B
JSON

{
"name": "api",
"version": "1.0.50",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/index.js",
"test": "bun test"
},
"dependencies": {
"elysia": "latest"
},
"devDependencies": {
"bun-types": "latest"
},
"module": "src/index.js"
}