package.json
| 1 | { |
| 2 | "name": "zbin", |
| 3 | "version": "1.0.0", |
| 4 | "scripts": { |
| 5 | "build": "bun build src/client*.ts src/styles/*.css --outdir assets/dist", |
| 6 | "dev": "bun run build && bun run --watch src/index.ts", |
| 7 | "prod": "bun run build && bun run src/index.ts", |
| 8 | "format": "biome format --write", |
| 9 | "lint": "biome lint", |
| 10 | "typecheck": "tsc --noEmit", |
| 11 | "test": "bun test" |
| 12 | }, |
| 13 | "dependencies": { |
| 14 | "@elysiajs/cron": "^1.2.0", |
| 15 | "@elysiajs/html": "^1.2.0", |
| 16 | "@elysiajs/static": "^1.2.0", |
| 17 | "busboy": "^1.6.0", |
| 18 | "elysia": "^1.2.0", |
| 19 | "file-type": "^20.0.1", |
| 20 | "highlight.js": "^11.11.1", |
| 21 | "sakura.css": "^1.5.1" |
| 22 | }, |
| 23 | "devDependencies": { |
| 24 | "@biomejs/biome": "2.4.16", |
| 25 | "@types/busboy": "^1.5.4", |
| 26 | "bun-types": "latest" |
| 27 | }, |
| 28 | "module": "src/index.js" |
| 29 | } |
| 30 |