2021-02-19 08:07:53 -07:00
|
|
|
{
|
|
|
|
"name": "react-native-vision-camera",
|
2024-02-07 05:15:32 -07:00
|
|
|
"version": "3.9.0-beta.2",
|
2023-10-05 06:50:36 -06:00
|
|
|
"description": "A powerful, high-performance React Native Camera library.",
|
2021-02-19 08:07:53 -07:00
|
|
|
"main": "lib/commonjs/index",
|
|
|
|
"module": "lib/module/index",
|
2021-02-25 09:48:00 -07:00
|
|
|
"types": "lib/typescript/index.d.ts",
|
2021-02-19 08:07:53 -07:00
|
|
|
"react-native": "src/index",
|
|
|
|
"source": "src/index",
|
|
|
|
"files": [
|
2021-02-25 10:00:11 -07:00
|
|
|
"src",
|
2021-02-20 12:41:10 -07:00
|
|
|
"lib/commonjs",
|
|
|
|
"lib/module",
|
|
|
|
"lib/typescript",
|
2023-02-21 07:00:48 -07:00
|
|
|
"cpp/**/*.h",
|
|
|
|
"cpp/**/*.cpp",
|
2021-02-19 08:20:19 -07:00
|
|
|
"android/build.gradle",
|
2021-07-08 03:07:50 -06:00
|
|
|
"android/gradle.properties",
|
|
|
|
"android/CMakeLists.txt",
|
2021-06-28 09:27:24 -06:00
|
|
|
"android/src",
|
2021-02-19 08:20:19 -07:00
|
|
|
"ios/**/*.h",
|
|
|
|
"ios/**/*.m",
|
|
|
|
"ios/**/*.mm",
|
|
|
|
"ios/**/*.cpp",
|
|
|
|
"ios/**/*.swift",
|
2021-02-25 07:32:12 -07:00
|
|
|
"ios/VisionCamera.xcodeproj/project.pbxproj",
|
2021-07-12 00:52:31 -06:00
|
|
|
"app.plugin.js",
|
2021-03-26 09:22:24 -06:00
|
|
|
"VisionCamera.podspec",
|
2021-04-08 04:30:22 -06:00
|
|
|
"README.md"
|
2021-02-19 08:07:53 -07:00
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"typescript": "tsc --noEmit",
|
|
|
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
2021-02-23 06:17:10 -07:00
|
|
|
"lint-ci": "yarn lint -f ./node_modules/@firmnav/eslint-github-actions-formatter/dist/formatter.js",
|
2023-09-01 11:49:44 -06:00
|
|
|
"start": "cd example && yarn start",
|
2021-07-08 02:52:14 -06:00
|
|
|
"build": "bob build",
|
2021-02-19 08:07:53 -07:00
|
|
|
"release": "release-it",
|
2021-06-03 06:16:02 -06:00
|
|
|
"pods": "cd example && yarn pods",
|
2023-09-01 10:32:23 -06:00
|
|
|
"bootstrap": "yarn && cd example && yarn && yarn pods",
|
2023-09-01 04:58:32 -06:00
|
|
|
"check-android": "scripts/ktlint.sh && scripts/clang-format.sh",
|
|
|
|
"check-ios": "scripts/swiftlint.sh && scripts/swiftformat.sh && scripts/clang-format.sh",
|
2021-07-14 05:17:14 -06:00
|
|
|
"check-js": "yarn lint --fix && yarn typescript",
|
2023-09-01 04:58:32 -06:00
|
|
|
"check-cpp": "scripts/clang-format.sh",
|
2021-03-17 08:35:49 -06:00
|
|
|
"check-all": "scripts/check-all.sh",
|
2021-06-28 02:25:47 -06:00
|
|
|
"clean-ios": "scripts/clean-ios.sh",
|
|
|
|
"clean-android": "scripts/clean-android.sh",
|
2023-09-29 13:59:02 -06:00
|
|
|
"clean-js": "scripts/clean-js.sh",
|
|
|
|
"prepack": "cp ../README.md ./README.md",
|
|
|
|
"postpack": "rm ./README.md"
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
2024-02-07 02:52:07 -07:00
|
|
|
"react",
|
|
|
|
"native",
|
2021-02-25 14:51:20 -07:00
|
|
|
"camera",
|
2024-02-07 02:52:07 -07:00
|
|
|
"react-native",
|
|
|
|
"react-native-camera",
|
2021-02-25 14:51:20 -07:00
|
|
|
"vision",
|
2024-02-07 02:52:07 -07:00
|
|
|
"javascript",
|
|
|
|
"typescript",
|
|
|
|
"android",
|
|
|
|
"ios",
|
|
|
|
"library",
|
|
|
|
"instagram",
|
|
|
|
"snapchat",
|
2021-02-25 14:51:20 -07:00
|
|
|
"ai",
|
2023-10-04 04:56:47 -06:00
|
|
|
"scanner",
|
2024-02-07 02:52:07 -07:00
|
|
|
"qrcode",
|
|
|
|
"barcode",
|
|
|
|
"qr-code",
|
|
|
|
"jsi",
|
|
|
|
"worklet",
|
|
|
|
"module",
|
2023-10-04 04:56:47 -06:00
|
|
|
"frame",
|
|
|
|
"processing",
|
|
|
|
"realtime"
|
2021-02-19 08:07:53 -07:00
|
|
|
],
|
2021-06-21 14:42:46 -06:00
|
|
|
"repository": "https://github.com/mrousavy/react-native-vision-camera",
|
2024-02-07 02:52:07 -07:00
|
|
|
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
|
2021-02-25 14:45:59 -07:00
|
|
|
"license": "MIT",
|
2021-02-19 08:07:53 -07:00
|
|
|
"bugs": {
|
2021-06-21 14:42:46 -06:00
|
|
|
"url": "https://github.com/mrousavy/react-native-vision-camera/issues"
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
2023-03-06 03:03:40 -07:00
|
|
|
"homepage": "https://react-native-vision-camera.com/",
|
2021-02-19 08:07:53 -07:00
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-31 10:21:55 -06:00
|
|
|
"@expo/config-plugins": "^7.2.5",
|
2023-07-03 04:40:07 -06:00
|
|
|
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
|
|
|
|
"@react-native/eslint-config": "^0.72.2",
|
2024-01-31 09:28:52 -07:00
|
|
|
"@react-native/typescript-config": "^0.74.0",
|
2023-07-31 10:21:55 -06:00
|
|
|
"@release-it/conventional-changelog": "^7.0.0",
|
2023-08-21 04:50:14 -06:00
|
|
|
"@types/react": "^18.2.19",
|
2023-07-03 04:40:07 -06:00
|
|
|
"@types/react-native": "^0.72.2",
|
2023-07-31 10:21:55 -06:00
|
|
|
"eslint": "^8.46.0",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2023-08-21 04:50:14 -06:00
|
|
|
"prettier": "^3.0.1",
|
2023-02-09 03:52:41 -07:00
|
|
|
"react": "^18.2.0",
|
2023-07-31 10:21:55 -06:00
|
|
|
"react-native": "^0.72.3",
|
|
|
|
"react-native-builder-bob": "^0.21.3",
|
2024-01-30 09:58:48 -07:00
|
|
|
"react-native-worklets-core": "^0.3.0",
|
2023-07-31 10:21:55 -06:00
|
|
|
"release-it": "^16.1.3",
|
2023-07-03 04:40:07 -06:00
|
|
|
"typescript": "^5.1.6"
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react": "*",
|
2023-02-13 07:22:45 -07:00
|
|
|
"react-native": "*",
|
2023-08-21 04:50:14 -06:00
|
|
|
"react-native-worklets-core": "*"
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
2023-08-29 09:53:00 -06:00
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"react-native-worklets-core": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
2021-02-19 08:07:53 -07:00
|
|
|
"release-it": {
|
|
|
|
"git": {
|
|
|
|
"commitMessage": "chore: release ${version}",
|
|
|
|
"tagName": "v${version}"
|
|
|
|
},
|
|
|
|
"npm": {
|
|
|
|
"publish": true
|
|
|
|
},
|
|
|
|
"github": {
|
|
|
|
"release": true
|
|
|
|
},
|
|
|
|
"plugins": {
|
|
|
|
"@release-it/conventional-changelog": {
|
2021-06-10 06:30:57 -06:00
|
|
|
"preset": {
|
|
|
|
"name": "conventionalcommits",
|
|
|
|
"types": [
|
|
|
|
{
|
|
|
|
"type": "feat",
|
|
|
|
"section": "✨ Features"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "perf",
|
|
|
|
"section": "💨 Performance Improvements"
|
|
|
|
},
|
2024-01-29 05:47:12 -07:00
|
|
|
{
|
|
|
|
"type": "fix",
|
|
|
|
"section": "🐛 Bug Fixes"
|
|
|
|
},
|
2021-07-26 03:38:08 -06:00
|
|
|
{
|
|
|
|
"type": "chore(deps)",
|
|
|
|
"section": "🛠️ Dependency Upgrades"
|
|
|
|
},
|
2021-06-10 06:30:57 -06:00
|
|
|
{
|
|
|
|
"type": "docs",
|
|
|
|
"section": "📚 Documentation"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"react-native-builder-bob": {
|
|
|
|
"source": "src",
|
|
|
|
"output": "lib",
|
|
|
|
"targets": [
|
|
|
|
"commonjs",
|
|
|
|
"module",
|
|
|
|
[
|
|
|
|
"typescript",
|
|
|
|
{
|
2021-08-16 02:45:41 -06:00
|
|
|
"project": "tsconfig.json"
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|