torrent/package.json

28 lines
723 B
JSON

{
"name": "torrent-faker",
"version": "0.1.0",
"description": "Fake torrent seeder — reports upload stats to trackers without sharing data",
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"cli": "bun run src/cli/index.ts",
"test": "bun test",
"build:ui": "cd ui && bun run build",
"build": "bun run build:ui",
"lint": "bunx biome check src",
"format": "bunx biome format --write src"
},
"dependencies": {
"hono": "^4.12.9",
"js-yaml": "^4.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"bun-types": "latest"
}
}