Files
Test-IP/package.json
T

18 lines
379 B
JSON
Raw Normal View History

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",
"check": "biome check .",
"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:10:33 +07:00
"@biomejs/biome": "^2.5.3"
2023-03-19 11:41:38 +07:00
}
2023-03-18 19:36:22 +07:00
}