mirror of
https://github.com/ashim-hq/ashim
synced 2026-04-21 21:48:03 +00:00
# [1.14.0](https://github.com/stirling-image/stirling-image/compare/v1.13.0...v1.14.0) (2026-04-10) ### Bug Fixes * add FILES_STORAGE_PATH to Dockerfile ENV to prevent data loss ([b575243](b575243e9a)) * add shutdown timeout and improve health endpoint ([986ad37](986ad37bb5)) * address code review findings before merge ([caf65bc](caf65bc469)) * correct PaddleOCR language codes for model download and OCR ([e1ee571](e1ee57103c)) * force CPU mode in download_models.py for build-time compatibility ([b4b59a7](b4b59a7500)) * handle paddlepaddle-gpu CUDA import at build time gracefully ([0083a74](0083a741a9)) * install cuda-compat stubs for build-time PaddlePaddle import ([d31d665](d31d66556e)) * load RealESRGAN pretrained weights for actual AI upscaling ([fa9569c](fa9569c920)) * revert to npx tsx in CMD for pnpm compatibility ([e55253d](e55253dee0)) * simplify smoke test to CPU-only imports for build-time compat ([3481663](3481663960)) * skip RealESRGAN import check on arm64 in smoke test ([1e2ef52](1e2ef52846)) * split paddlepaddle-gpu and paddleocr installs, use --extra-index-url ([74183e8](74183e8dc1)) * suppress ML library stdout noise in ocr.py and upscale.py ([c0b419d](c0b419de21)) * use PaddlePaddle GPU package index for CUDA wheels ([dd9528f](dd9528f53c)) * use platform-specific mediapipe version for arm64 compatibility ([7face19](7face19238)) ### Features * expand model pre-download with verification and smoke test ([a9e3b96](a9e3b96887)) * simplify CI to single unified Docker build ([b385a2e](b385a2eabb)) * simplify compose to single file, add log rotation ([84f7057](84f7057a49)) * unified Docker image with GPU auto-detection ([6c3eb3b](6c3eb3b876))
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "@stirling-image/api",
|
|
"version": "1.14.0",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.0.0",
|
|
"@fastify/multipart": "^9.0.0",
|
|
"@fastify/rate-limit": "^10.2.0",
|
|
"@fastify/static": "^8.1.0",
|
|
"@scalar/fastify-api-reference": "^1.49.5",
|
|
"@stirling-image/ai": "workspace:*",
|
|
"@stirling-image/image-engine": "workspace:*",
|
|
"@stirling-image/shared": "workspace:*",
|
|
"archiver": "^7.0.1",
|
|
"better-sqlite3": "^11.7.0",
|
|
"dotenv": "^16.4.0",
|
|
"drizzle-orm": "^0.38.0",
|
|
"exif-reader": "^2.0.3",
|
|
"fastify": "^5.2.0",
|
|
"js-yaml": "^4.1.1",
|
|
"jsqr": "^1.4.0",
|
|
"mupdf": "^1.27.0",
|
|
"p-queue": "^9.1.0",
|
|
"pdfkit": "^0.18.0",
|
|
"piscina": "^5.1.4",
|
|
"potrace": "^2.1.8",
|
|
"qrcode": "^1.5.4",
|
|
"sharp": "^0.33.0",
|
|
"tsx": "^4.19.0",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/archiver": "^7.0.0",
|
|
"@types/better-sqlite3": "^7.6.0",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^22.0.0",
|
|
"@types/pdfkit": "^0.17.5",
|
|
"@types/potrace": "^2.1.5",
|
|
"@types/qrcode": "^1.5.6",
|
|
"drizzle-kit": "^0.30.0",
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"license": "AGPL-3.0"
|
|
}
|