Files

22 lines
511 B
JSON
Raw Permalink Normal View History

2023-09-24 19:55:50 +07:00
{
"name": "tenki",
"version": "1.0.0",
2025-08-08 15:45:25 +07:00
"main": "src/index.ts",
"type": "module",
2023-09-24 19:55:50 +07:00
"repository": "https://github.com/YuzuZensai/Tenki.git",
"author": "Yuzu <yuzu@kirameki.cafe>",
"license": "MIT",
"devDependencies": {
2026-05-27 14:29:29 +07:00
"bun-types": "^1.3.14"
2023-09-24 19:55:50 +07:00
},
"scripts": {
2025-08-08 15:45:25 +07:00
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun"
2023-09-24 19:55:50 +07:00
},
"dependencies": {
2026-05-27 14:29:29 +07:00
"@elysiajs/cors": "^1.4.2",
"elysia": "^1.4.28"
2023-09-24 19:55:50 +07:00
}
}