mirror of
https://github.com/YuzuZensai/Test-IP.git
synced 2026-07-21 15:19:28 +00:00
24 lines
630 B
JSON
24 lines
630 B
JSON
{
|
|
"name": "ip-test",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun --hot src/index.ts",
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome lint .",
|
|
"format": "biome format .",
|
|
"format:fix": "biome format --write .",
|
|
"check": "bun run typecheck && biome check . && bun test",
|
|
"fix": "biome check --write ."
|
|
},
|
|
"dependencies": {
|
|
"elysia": "^1.4.29"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.5.3",
|
|
"@types/bun": "^1.3.14",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|