{
  "name": "react-native-agentkit",
  "version": "0.2.2",
  "description": "Convert React Native app flows to CLI for AI agent automation",
  "main": "./lib/module/index.js",
  "types": "./lib/typescript/src/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.tsx",
      "types": "./lib/typescript/src/index.d.ts",
      "default": "./lib/module/index.js"
    },
    "./test": "./cli/test.js",
    "./package.json": "./package.json"
  },
  "bin": {
    "react-native-agentkit": "./cli/index.js",
    "react-native-agentkit-relay": "./relay/server.js"
  },
  "files": [
    "src",
    "lib",
    "cli",
    "relay",
    "docs",
    "SKILL.md",
    "!ios/build",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/local.properties",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*"
  ],
  "scripts": {
    "example": "yarn workspace react-native-agentkit-example",
    "clean": "del-cli lib",
    "prepare": "bob build",
    "prepack": "bob build",
    "prepublishOnly": "bob build",
    "typecheck": "tsc",
    "lint": "prettier --write \"**/*.{js,ts,tsx}\" && eslint \"**/*.{js,ts,tsx}\""
  },
  "keywords": [
    "react-native",
    "cli",
    "ai-agent",
    "automation",
    "testing",
    "accessibility",
    "ui-automation",
    "ios",
    "android"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/junocs/react-native-agentkit.git"
  },
  "author": "Juno Sheridan <juno.sheridan@gmail.com> (https://github.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/junocs/react-native-agentkit/issues"
  },
  "homepage": "https://github.com/junocs/react-native-agentkit#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "devDependencies": {
    "@eslint/compat": "^1.3.2",
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.35.0",
    "@react-native/babel-preset": "0.83.0",
    "@react-native/eslint-config": "0.83.0",
    "@types/react": "^19.1.12",
    "del-cli": "^6.0.0",
    "eslint": "^9.35.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "prettier": "^2.8.8",
    "react": "19.2.0",
    "react-native": "0.83.4",
    "react-native-builder-bob": "^0.40.18",
    "turbo": "^2.5.6",
    "typescript": "^5.9.2"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "dependencies": {
    "ws": "^8.18.0"
  },
  "workspaces": [
    "example"
  ],
  "packageManager": "yarn@4.11.0",
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "create-react-native-library": {
    "type": "library",
    "languages": "js",
    "tools": [
      "eslint"
    ],
    "version": "0.57.2"
  }
}
