facezkp
Version:
Face analysis library with liveness detection, biometric template extraction, and fuzzy hashing for privacy-preserving identity verification.
110 lines (109 loc) • 3.31 kB
JSON
{
"name": "facezkp",
"version": "1.0.0",
"description": "Face analysis library with liveness detection, biometric template extraction, and fuzzy hashing for privacy-preserving identity verification.",
"main": "dist/facezk.node.js",
"module": "dist/facezk.esm.js",
"browser": "dist/facezk.esm.js",
"types": "types/facezk.d.ts",
"exports": {
"node": "./dist/facezk.node.js",
"script": "./dist/facezk.js",
"module": "./dist/facezk.esm.js",
"types": "./types/facezk.d.ts",
"require": "./dist/facezk.node.js",
"import": "./dist/facezk.esm.js",
"./demo": "./demo/index.html"
},
"files": [
"dist/",
"types/",
"demo/",
"models/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"author": "VerifiedOnchain Team <team@facezk.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/facezk/facezk-lib.git"
},
"homepage": "https://facezk.com",
"bugs": {
"url": "https://github.com/VerifiedOnchain/facezk-lib/issues"
},
"keywords": [
"zk-proof",
"humanity-verification",
"liveness-detection",
"biometric",
"face-analysis",
"selfie-check",
"ai-verification",
"privacy-preserving",
"fuzzy-hashing",
"face-recognition",
"proof-of-humanity",
"zero-knowledge",
"tensorflow",
"tfjs"
],
"scripts": {
"build": "node build.js",
"build:prod": "NODE_ENV=production node build.js",
"dev": "node build.js --profile development",
"clean": "node build.js --profile clean",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false --passWithNoTests",
"lint": "eslint src/**/*.ts demo/**/*.js",
"lint:fix": "eslint src/**/*.ts demo/**/*.js --fix",
"type-check": "tsc --noEmit",
"demo": "npm run build && npx http-server -p 3030 --cors -o demo/index.html",
"serve": "npx http-server -p 3030 --cors -o demo/index.html",
"docs": "typedoc --out docs src/index.ts",
"security": "npm audit && snyk test",
"prepublishOnly": "npm run clean && npm run build:prod && npm run test:ci && npm run lint",
"release": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"dependencies": {
"@tensorflow/tfjs-backend-wasm": "^4.22.0",
"@tensorflow/tfjs-backend-webgl": "^4.22.0",
"@tensorflow/tfjs-converter": "^4.22.0",
"@tensorflow/tfjs-core": "^4.22.0",
"@vladmandic/human": "^3.3.5",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}