{
  "name": "@souscheflabs/ml-vision",
  "version": "0.1.3",
  "description": "ML-powered product detection for React Native - multi-barcode scanning, receipt OCR, and visual product recognition",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "sideEffects": false,
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm && npm run build:types",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --outDir dist/types",
    "watch": "tsc --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run clean && npm run build"
  },
  "keywords": [
    "react-native",
    "ml",
    "machine-learning",
    "barcode",
    "ocr",
    "product-detection",
    "vision-camera",
    "tflite",
    "yolo",
    "object-detection",
    "food-recognition"
  ],
  "author": "Artan Muzhaqi <artan@souscheflabs.com>",
  "license": "ISC",
  "type": "commonjs",
  "homepage": "https://github.com/SousChefLabs/ml-vision#readme",
  "bugs": {
    "url": "https://github.com/SousChefLabs/ml-vision/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/SousChefLabs/ml-vision.git"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/SousChefLabs"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^9.39.2",
    "@react-native/eslint-config": "^0.83.1",
    "@testing-library/react-native": "^12.4.3",
    "@types/jest": "^29.5.12",
    "@types/react": "^19.2.8",
    "@types/react-native": "^0.73.0",
    "@typescript-eslint/eslint-plugin": "^8.53.0",
    "@typescript-eslint/parser": "^8.53.0",
    "eslint": "^9.39.2",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^7.0.1",
    "eslint-plugin-react-native": "^5.0.0",
    "jest": "^29.7.0",
    "react-native-reanimated": "^4.2.1",
    "ts-jest": "^29.1.2",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "react": ">=18.2.0",
    "react-native": ">=0.74.0",
    "react-native-mmkv": ">=3.8.0",
    "react-native-reanimated": ">=3.8.0",
    "react-native-vision-camera": ">=4.7.0"
  },
  "peerDependenciesMeta": {
    "react-native-mmkv": {
      "optional": false
    },
    "react-native-vision-camera": {
      "optional": false
    },
    "react-native-reanimated": {
      "optional": true
    }
  },
  "dependencies": {
    "@react-native-ml-kit/text-recognition": "^2.0.0",
    "react-native-fast-tflite": "^1.5.0",
    "react-native-worklets-core": "^1.6.2",
    "vision-camera-resize-plugin": "^3.2.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ]
}
