UNPKG

react-native-vision-camera-face-detector

Version:

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

145 lines (144 loc) 3.7 kB
{ "name": "react-native-vision-camera-face-detector", "version": "2.0.1", "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", "react-native.config.js", "lib", "nitrogen", "android/build.gradle", "android/gradle.properties", "android/fix-prefab.gradle", "android/CMakeLists.txt", "android/src", "ios/**/*.h", "ios/**/*.m", "ios/**/*.mm", "ios/**/*.cpp", "ios/**/*.swift", "nitro.json", "*.podspec", "README.md" ], "scripts": { "typescript": "tsc --noEmit", "clean": "rm -rf android/build node_modules/**/android/build lib", "lint": "eslint \"**/*.{js,ts,tsx}\"", "specs": "tsc --noEmit false && nitrogen --logLevel=\"debug\"", "prepare": "npx nitrogen && 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": "^11", "@tsconfig/react-native": "^3.0.9", "@types/react": "^19", "eslint": "^10.2.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.5", "nitrogen": "^0.35.6", "prettier": "^3.8.3", "react": "^19", "react-native": "0.83.6", "react-native-builder-bob": "^0.41.0", "react-native-nitro-image": "^0.14.0", "react-native-nitro-modules": "^0.35.6", "react-native-reanimated": "4.2.1", "react-native-vision-camera": "^5.0.10", "react-native-vision-camera-worklets": "^5.0.10", "react-native-worklets": "0.7.4", "release-it": "^20.0.1", "typescript": "~5.9.2" }, "peerDependencies": { "react": ">= 18", "react-native": ">= 0.74", "react-native-nitro-modules": ">= 0.35", "react-native-vision-camera": ">= 5.0" }, "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" } }