mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
32 lines
762 B
JSON
32 lines
762 B
JSON
{
|
|
"name": "api",
|
|
"version": "5.0.0",
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"build": "bun build src/index.ts --target bun --outdir ./dist",
|
|
"start": "NODE_ENV=production bun dist/index.js",
|
|
"test": "bun test",
|
|
"format": "biome check --write ."
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/swagger": "zoriya/elysia-swagger#build",
|
|
"blurhash": "^2.0.5",
|
|
"drizzle-kit": "^0.31.0",
|
|
"drizzle-orm": "0.43.1",
|
|
"elysia": "^1.3.0-exp.71",
|
|
"jose": "^6.0.10",
|
|
"parjs": "^1.3.9",
|
|
"pg": "^8.15.6",
|
|
"sharp": "^0.34.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/pg": "^8.11.14",
|
|
"node-addon-api": "^8.3.1",
|
|
"bun-types": "^1.2.11"
|
|
},
|
|
"module": "src/index.js",
|
|
"patchedDependencies": {
|
|
"drizzle-orm@0.43.1": "patches/drizzle-orm@0.43.1.patch"
|
|
}
|
|
}
|