Initial commit: Vision scanner for shelf/pantry product extraction

This commit is contained in:
2026-03-29 21:58:07 -04:00
commit 5de44e7579
19 changed files with 3673 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "vision-scanner-service",
"version": "1.0.0",
"description": "Standalone vision scanner service for shelf/pantry photo scanning",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"chromadb": "^1.9.2",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"multer": "^1.4.5-lts.2",
"node-windows": "^1.0.0-beta.8",
"sharp": "^0.33.5",
"zxing-wasm": "^3.0.1"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/multer": "^1.4.12",
"tsx": "^4.19.4",
"typescript": "^5.8.2"
}
}