{
  "name": "react-native-real-fetch",
  "version": "0.1.3",
  "description": "A native Fetch API implementation for React Native.",
  "main": "./lib/commonjs/index",
  "module": "./lib/module/index",
  "react-native": "./src/index",
  "source": "./src/index",
  "exports": {
    ".": {
      "import": {
        "types": "./lib/typescript/module/index.d.ts",
        "default": "./lib/module/index.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/index.d.ts",
        "default": "./lib/commonjs/index.js"
      },
      "react-native": "./src/index"
    }
  },
  "files": [
    "src",
    "react-native.config.js",
    "lib",
    "nitrogen",
    "android/build.gradle",
    "android/gradle.properties",
    "android/CMakeLists.txt",
    "android/src",
    "ios/**/*.h",
    "ios/**/*.m",
    "ios/**/*.mm",
    "ios/**/*.cpp",
    "ios/**/*.swift",
    "*.podspec"
  ],
  "scripts": {
    "clean": "rm -rf android/build node_modules/**/android/build lib",
    "codegen": "nitro-codegen --logLevel=\"debug\"",
    "build": "bob build",
    "release": "release-it"
  },
  "keywords": [
    "react-native",
    "fetch",
    "nitro"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Vexcited/react-native-real-fetch.git"
  },
  "author": "Mikkel ALMONTE--RINGAUD <contact@vexcited.com> (https://www.vexcited.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Vexcited/react-native-real-fetch/issues"
  },
  "homepage": "https://github.com/Vexcited/react-native-real-fetch#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "hooks": {
      "after:bump": "bun run clean && bun run codegen && bun run build"
    },
    "npm": {
      "publish": true
    }
  },
  "devDependencies": {
    "@react-native/typescript-config": "^0.81.1",
    "@types/react": "~19.0.10",
    "nitro-codegen": "^0.29.3",
    "react": "19.0.0",
    "react-native": "^0.79.5",
    "react-native-builder-bob": "^0.40.13",
    "react-native-nitro-modules": "^0.29.3",
    "release-it": "^19.0.4",
    "typescript": "^5.9.2"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*",
    "react-native-nitro-modules": "^0.29.3"
  },
  "dependencies": {
    "@bacons/text-decoder": "^0.0.0",
    "web-streams-polyfill": "^4.2.0"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "esm": true
        }
      ],
      [
        "module",
        {
          "esm": true
        }
      ],
      "typescript"
    ]
  }
}
