2023-03-18 19:36:22 +07:00
|
|
|
{
|
2026-04-13 21:28:47 +07:00
|
|
|
"name": "ip-test",
|
|
|
|
|
"type": "module",
|
2023-03-19 11:41:38 +07:00
|
|
|
"scripts": {
|
2026-04-13 21:28:47 +07:00
|
|
|
"start": "bun run src/index.ts",
|
|
|
|
|
"dev": "bun --hot src/index.ts",
|
|
|
|
|
"test": "bun test",
|
2026-07-12 18:17:53 +07:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"lint": "biome lint .",
|
|
|
|
|
"format": "biome format .",
|
|
|
|
|
"format:fix": "biome format --write .",
|
|
|
|
|
"check": "bun run typecheck && biome check . && bun test",
|
2026-04-13 21:28:47 +07:00
|
|
|
"fix": "biome check --write ."
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-07-12 18:10:33 +07:00
|
|
|
"elysia": "^1.4.29"
|
2026-04-13 21:28:47 +07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-07-12 18:17:53 +07:00
|
|
|
"@biomejs/biome": "^2.5.3",
|
|
|
|
|
"@types/bun": "^1.3.14",
|
|
|
|
|
"typescript": "^7.0.2"
|
2023-03-19 11:41:38 +07:00
|
|
|
}
|
2023-03-18 19:36:22 +07:00
|
|
|
}
|