Files
Tenki/package.json
T
2026-05-27 14:29:29 +07:00

22 lines
511 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": "^1.3.14"
},
"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.4.2",
"elysia": "^1.4.28"
}
}