package.json
| 1 | { |
| 2 | "name": "zbin", |
| 3 | "version": "1.0.0", |
| 4 | "scripts": { |
| 5 | "build": "bun build src/client*.ts --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 | }, |
| 11 | "dependencies": { |
| 12 | "@chneau/elysia-compression": "^1.0.11", |
| 13 | "@elysiajs/cron": "^1.2.0", |
| 14 | "@elysiajs/html": "^1.2.0", |
| 15 | "@elysiajs/static": "^1.2.0", |
| 16 | "elysia": "^1.2.0", |
| 17 | "file-type": "^20.0.1", |
| 18 | "highlight.js": "^11.11.1", |
| 19 | "pkcs7-padding": "^0.1.1", |
| 20 | "utf-8-validate": "^6.0.5" |
| 21 | }, |
| 22 | "devDependencies": { |
| 23 | "@biomejs/biome": "2.4.16", |
| 24 | "@types/pkcs7-padding": "^0.1.3", |
| 25 | "@types/utf-8-validate": "^5.0.2", |
| 26 | "bun-types": "latest" |
| 27 | }, |
| 28 | "module": "src/index.js" |
| 29 | } |
| 30 |