redirector/package.json

17 lines
339 B
JSON
Raw Permalink Normal View History

2023-07-07 08:15:37 +02:00
{
"name": "redirector",
"license": "Unlicense",
"main": "src/index.js",
"scripts": {
2024-03-08 10:09:15 +01:00
"start": "bun src/index.ts",
"dev": "bun run --hot src/index.ts"
2023-07-07 08:15:37 +02:00
},
"dependencies": {
2024-03-08 10:09:15 +01:00
"@hono/node-server": "^1.8.2",
"@types/node": "^20.11.25",
"hono": "^4.0.10",
2023-07-07 08:15:37 +02:00
"tiny-invariant": "^1.3.1",
2024-03-08 10:09:15 +01:00
"tsx": "^4.7.1"
2023-07-07 08:15:37 +02:00
}
}