UNPKG

facezk-core

Version:

ZKP-AI Proof of Humanity: Live Selfie Check with Biometric Template Extraction and Fuzzy Hashing

130 lines (129 loc) 3.57 kB
{ "name": "facezk-core", "version": "1.1.0", "description": "ZKP-AI Proof of Humanity: Live Selfie Check with Biometric Template Extraction and Fuzzy Hashing", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.js" }, "./react": { "types": "./dist/react.d.ts", "import": "./dist/react.esm.js", "require": "./dist/react.js" }, "./utils": { "types": "./dist/utils.d.ts", "import": "./dist/utils.esm.js", "require": "./dist/utils.js" } }, "files": [ "dist/", "README.md", "LICENSE", "CHANGELOG.md" ], "author": "VerifiedOnchain Team <team@facezk.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/VerifiedOnchain/facezk-lib.git" }, "homepage": "https://facezk.com", "bugs": { "url": "https://github.com/VerifiedOnchain/facezk-lib/issues" }, "keywords": [ "ZKP", "zk-proofs", "zkp-ai", "humanity-verification", "liveness-detection", "biometric", "face-analysis", "selfie-check", "ai-verification", "privacy-preserving", "fuzzy-hashing", "face-recognition", "proof-of-humanity", "zero-knowledge", "tensorflow", "tfjs", "react", "react-hooks" ], "scripts": { "build": "node build.js", "build:prod": "cross-env NODE_ENV=production node build.js", "dev": "node build.js --profile development", "clean": "rimraf dist", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:ci": "jest --ci --coverage --watchAll=false", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "type-check": "tsc --noEmit", "demo": "npm run build && node demo/server.js", "docs": "typedoc --out docs src/index.ts", "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": "^4.22.0", "@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" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "devDependencies": { "@tensorflow/tfjs-node": "^4.22.0", "@types/crypto-js": "^4.2.2", "@types/jest": "^29.5.14", "@types/node": "^22.13.1", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "canvas": "^3.1.2", "cross-env": "^7.0.3", "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", "react": "^18.3.1", "react-dom": "^18.3.1", "rimraf": "^5.0.5", "ts-jest": "^29.4.0", "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" ] }