Files
SnapOtter/apps/api/package.json
T

80 lines
2.2 KiB
JSON
Raw Normal View History

{
"name": "@snapotter/api",
2026-05-18 19:10:56 +08:00
"version": "1.17.1",
"private": true,
"type": "module",
"scripts": {
"dev": "PORT=13490 tsx watch src/index.ts",
"build": "tsc",
"start": "tsx src/index.ts",
"lint": "biome check src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"migrate:sqlite": "tsx src/db/migrate-from-sqlite.ts"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.0",
"@fastify/multipart": "^9.0.0",
"@fastify/rate-limit": "^10.2.0",
2026-06-10 19:08:08 +08:00
"@fastify/static": "^9.1.3",
"@neplex/vectorizer": "^0.1.0",
"@scalar/fastify-api-reference": "^1.57.5",
"@sentry/node": "^10.55.0",
"@snapotter/ai": "workspace:*",
"@snapotter/doc-engine": "workspace:*",
"@snapotter/enterprise": "workspace:*",
"@snapotter/image-engine": "workspace:*",
"@snapotter/media-engine": "workspace:*",
"@snapotter/shared": "workspace:*",
"archiver": "^7.0.1",
"better-sqlite3": "^11.7.0",
"bullmq": "^5.78.0",
"dotenv": "^16.4.0",
"drizzle-orm": "^0.45.2",
"exceljs": "^4.4.0",
"exif-reader": "^2.0.3",
"fast-xml-parser": "^5.8.0",
"fastify": "^5.8.5",
"fflate": "^0.8.3",
"ioredis": "^5.10.1",
"js-yaml": "^4.2.0",
"mupdf": "^1.27.0",
"openid-client": "^6.8.4",
"opentype.js": "^2.0.0",
"p-queue": "^9.3.0",
"papaparse": "^5.5.3",
"pdfkit": "^0.18.0",
"pg": "^8.21.0",
"pino-roll": "^4.0.0",
"playwright": "^1.60.0",
"posthog-node": "^5.35.9",
"potrace": "^2.1.8",
"prom-client": "^15.1.3",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"tar": "^7.5.16",
"tsx": "^4.22.4",
"yauzl": "^3.4.0",
"zod": "^3.24.0",
"zxing-wasm": "^3.1.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/better-sqlite3": "^7.6.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.19",
"@types/opentype.js": "^1.3.10",
"@types/papaparse": "^5.5.2",
"@types/pdfkit": "^0.17.6",
"@types/pg": "^8.20.0",
"@types/potrace": "^2.1.5",
"@types/qrcode": "^1.5.6",
"@types/tar": "^7.0.87",
"@types/yauzl": "^3.3.0",
"drizzle-kit": "^0.31.0",
"typescript": "^5.7.0"
2026-04-03 23:07:58 +08:00
},
"license": "AGPL-3.0"
}