Files
Tenki/package.json
T
2025-08-08 15:45:42 +07:00

22 lines
509 B
JSON

{
"name": "tenki",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"repository": "https://github.com/YuzuZensai/Tenki.git",
"author": "Yuzu <yuzu@kirameki.cafe>",
"license": "MIT",
"devDependencies": {
"bun-types": "latest"
},
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun"
},
"dependencies": {
"@elysiajs/cors": "^1.3.3",
"elysia": "latest"
}
}