feat(image-service): standalone processor

This commit is contained in:
2026-02-22 21:59:14 +01:00
parent 4f6d62a85c
commit 21c0c778f9
11 changed files with 812 additions and 136 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "image-service",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src"
},
"dependencies": {
"@mintel/image-processor": "workspace:*",
"fastify": "^4.26.2"
},
"devDependencies": {
"@mintel/eslint-config": "workspace:*",
"@mintel/tsconfig": "workspace:*",
"@types/node": "^20.0.0",
"tsx": "^4.7.1",
"typescript": "^5.0.0"
}
}