{
  "name": "@buoy-gg/network",
  "version": "7.0.40",
  "description": "In-app network inspector for React Native — requests, responses, timing & errors live, with GraphQL operation parsing. Part of Buoy devtools.",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "react-native": "lib/module/index.js",
  "source": "src/index.tsx",
  "exports": {
    ".": {
      "react-native": "./lib/module/index.js",
      "import": {
        "default": "./lib/module/index.js",
        "types": "./lib/typescript/index.d.ts"
      },
      "require": {
        "default": "./lib/commonjs/index.js",
        "types": "./lib/typescript/index.d.ts"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib"
  ],
  "sideEffects": false,
  "dependencies": {
    "@buoy-gg/shared-ui": "^7.0.40"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "devDependencies": {
    "@types/react": "^19.1.0",
    "@types/react-native": "^0.73.0",
    "node-fetch": "^2.7.0",
    "typescript": "~5.8.3"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "sourceMaps": false
        }
      ],
      [
        "module",
        {
          "sourceMaps": false
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Buoy-gg/buoy.git",
    "directory": "packages/network"
  },
  "bugs": {
    "url": "https://github.com/LovesWorking/react-native-buoy/issues"
  },
  "homepage": "https://buoy.gg/buoy/latest/docs/tools/network",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "keywords": [
    "react-native",
    "expo",
    "devtools",
    "debugging",
    "react-native-devtools",
    "flipper-alternative",
    "network-inspector",
    "http",
    "graphql",
    "api-debugging"
  ],
  "scripts": {
    "build": "bob build",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf lib",
    "test": "pnpm run typecheck",
    "test:interceptor": "node test-network-interceptor.js",
    "test:comprehensive": "node test-comprehensive.js"
  }
}