Files
Tenki/package.json
T

22 lines
509 B
JSON
Raw 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": {
2025-08-08 15:45:25 +07:00
"bun-types": "latest"
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": {
2025-08-08 15:45:25 +07:00
"@elysiajs/cors": "^1.3.3",
"elysia": "latest"
2023-09-24 19:55:50 +07:00
}
}