Files
boc/quixzoom-capture-pipeline/package.json
T
Bernt bae705aa97 ARCHITECTURE: NFC roadmap, edge AI, audit logging
- Add NFC ePassport roadmap (ICAO 9303, eIDAS)
- Add TensorFlow.js edge face detection (BlazeFace)
- Add structured audit logger (GDPR-compliant)
- Risk scoring support

Part of KYC Apple Native UX v1.1.0
2026-06-29 16:24:48 +00:00

52 lines
1.2 KiB
JSON

{
"name": "quixzoom-capture-pipeline",
"version": "1.0.0",
"description": "QUIXZOOM Capture Pipeline — Datainsamling, AI-preprocessing och taxonomisk taggning",
"main": "api/server.js",
"scripts": {
"start": "node api/server.js",
"dev": "nodemon api/server.js",
"worker:ai": "node workers/ai-preprocessing.js",
"worker:taxonomy": "node workers/taxonomy-tagger.js",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.450.0",
"@tensorflow/tfjs-node": "^4.13.0",
"cors": "^2.8.5",
"exif-parser": "^0.1.12",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"multer": "^1.4.5-lts.1",
"sharp": "^0.33.0",
"tesseract.js": "^5.0.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/quixzoom/capture-pipeline.git"
},
"keywords": [
"quixzoom",
"capture",
"pipeline",
"ai",
"ml",
"computer-vision",
"taxonomy"
],
"author": "LandveX Inc.",
"license": "MIT"
}