{
  "name": "@viktorvojtek/ar-vision-kit",
  "version": "0.1.0",
  "description": "A React Native package that provides a bridge to ARKit (iOS) and ARCore (Android) for creating augmented reality experiences in React Native applications.",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index.ts",
  "source": "src/index.ts",
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "ar-vision-kit.podspec",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!android/build",
    "!ios/build"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "bob build",
    "release": "release-it",
    "example": "yarn --cwd example",
    "bootstrap": "yarn example && yarn install",
    "build": "bob build",
    "clean": "rm -rf lib/",
    "prebuild": "yarn clean",
    "prepublishOnly": "yarn build",
    "publish:npm": "npm publish --access public",
    "publish:beta": "npm publish --access public --tag beta"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "ar",
    "augmented-reality",
    "arkit",
    "arcore",
    "3d",
    "vr"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/viktorvojtek/ArVisionKit.git"
  },
  "author": "Viktor Vojtek",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/viktorvojtek/ArVisionKit/issues"
  },
  "homepage": "https://github.com/viktorvojtek/ArVisionKit#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "react-native-haptic-feedback": "^2.3.3"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": ">=0.63.0 <1.0.x",
    "react-native-haptic-feedback": ">=1.11.0"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^11.0.0",
    "@react-native-community/eslint-config": "^2.0.0",
    "@release-it/conventional-changelog": "^2.0.0",
    "@testing-library/react-native": "^13.2.0",
    "@types/jest": "^29.5.14",
    "@types/react": "^19.1.2",
    "@types/react-native": "^0.72.8",
    "babel-plugin-module-resolver": "^5.0.2",
    "commitlint": "^11.0.0",
    "eslint": "^7.2.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^6.0.0",
    "jest": "^29.7.0",
    "metro": "^0.82.1",
    "metro-react-native-babel-preset": "^0.77.0",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "react": "^19.1.0",
    "react-native": "^0.79.1",
    "react-native-builder-bob": "^0.18.0",
    "release-it": "^14.2.2",
    "typescript": "^5.8.3"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    }
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      "typescript"
    ]
  }
}
