UNPKG

react-native-vision-camera-face-detector

Version:

Frame Processor Plugin to detect faces using MLKit Vision Face Detector for React Native Vision Camera!

137 lines (136 loc) 3.27 kB
{ "name": "react-native-vision-camera-face-detector", "version": "1.8.6", "description": "Frame Processor Plugin to detect faces using MLKit Vision Face Detector for React Native Vision Camera!", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/src/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "android", "ios", "cpp", "VisionCameraFaceDetector.podspec", "!android/build", "!ios/build" ], "scripts": { "typescript": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\"", "prepare": "bob build", "release": "release-it", "example": "yarn --cwd example", "bootstrap": "yarn example && yarn install && yarn example pods" }, "keywords": [ "vision-camera", "face-detector", "face-detection", "frame-processor", "react-native" ], "repository": { "type": "git", "url": "https://github.com/luicfrr/react-native-vision-camera-face-detector" }, "author": "luicfrr", "license": "MIT", "bugs": { "url": "https://github.com/luicfrr/react-native-vision-camera-face-detector" }, "homepage": "https://github.com/luicfrr/react-native-vision-camera-face-detector", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@react-native-community/eslint-config": "^3.2.0", "@release-it/conventional-changelog": "^10.0.1", "@tsconfig/react-native": "^3.0.5", "@types/react": "~18.3.12", "eslint": "^9.25.1", "eslint-config-prettier": "^10.1.2", "eslint-plugin-prettier": "^5.2.6", "prettier": "^3.5.3", "react": "18.3.1", "react-native": "0.76.9", "react-native-builder-bob": "^0.40.6", "react-native-vision-camera": "4.6.4", "react-native-worklets-core": "1.5.0", "release-it": "^19.0.1", "typescript": "~5.8.3" }, "peerDependencies": { "react": ">= 18", "react-native": ">= 0.74", "react-native-vision-camera": ">= 4.0" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/lib/" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "publishConfig": { "registry": "https://registry.npmjs.org" } }, "eslintConfig": { "root": true, "extends": [ "@react-native-community", "prettier" ], "rules": { "prettier/prettier": [ "error", { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false } ] } }, "eslintIgnore": [ "node_modules/", "lib/" ], "prettier": { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", "typescript" ] }, "directories": { "lib": "lib" } }