Files
boc/quixzoom-video-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

46 lines
1.2 KiB
JSON

{
"name": "quixzoom-video-pipeline",
"version": "1.0.0",
"description": "QUIXZOOM Urban Video Ingestion Pipeline — Discovery, frame extraction, AI annotation, dataset builder",
"main": "discovery/youtube-discovery.js",
"scripts": {
"start": "node discovery/youtube-discovery.js",
"discover": "node discovery/youtube-discovery.js",
"extract": "node processing/frame-extractor.js",
"annotate": "node processing/ai-annotator.js",
"build-dataset": "node dataset-builder/builder.js",
"pipeline": "node pipeline-runner.js",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.13.0",
"googleapis": "^128.0.0",
"ioredis": "^5.3.2",
"sharp": "^0.33.0",
"tesseract.js": "^5.0.3"
},
"devDependencies": {
"eslint": "^8.55.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/quixzoom/video-pipeline.git"
},
"keywords": [
"quixzoom",
"video",
"pipeline",
"urban",
"intelligence",
"computer-vision",
"dataset"
],
"author": "LandveX Inc.",
"license": "MIT"
}