{
  "name": "react-native-encoding",
  "version": "1.0.1",
  "description": "Encoding utils implemented as C++ TurboModule for React Native",
  "keywords": [
    "react-native",
    "ios",
    "android",
    "utf8",
    "utf-8",
    "base64",
    "base-64",
    "hex",
    "arraybuffer",
    "uint8array"
  ],
  "author": "Mateusz Mędrek <luigimario1913@gmail.com> (https://github.com/mateusz1913)",
  "bugs": {
    "url": "https://github.com/mateusz1913/react-native-encoding/issues"
  },
  "homepage": "https://github.com/mateusz1913/react-native-encoding#readme",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mateusz1913/react-native-encoding.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "apple",
    "cpp",
    "encoding-core",
    "ReactNativeEncoding.podspec",
    "react-native.config.js",
    "jest",
    "LICENSE",
    "!lib/typescript/example",
    "!android/.gradle",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/spotless.gradle",
    "!ios/build",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__"
  ],
  "scripts": {
    "build:js": "bob build",
    "format:cpp": "./scripts/format-cpp.sh",
    "format:js": "eslint \"**/*.{js,ts,tsx}\" --fix",
    "format:objc": "./scripts/format-objc.sh",
    "lefthook": "lefthook",
    "lint:cpp": "./scripts/lint-cpp.sh",
    "lint:js": "eslint \"**/*.{js,ts,tsx}\"",
    "lint:objc": "./scripts/lint-objc.sh",
    "test:cpp:prepare": "./native-tests/prepare-and-run-tests.sh",
    "test:cpp": "./native-tests/run-tests.sh",
    "test:js": "jest",
    "tsc": "tsc",
    "typecheck": "tsc --noEmit",
    "release": "changeset publish",
    "version": "changeset version && yarn install --mode update-lockfile",
    "changeset": "changeset"
  },
  "devDependencies": {
    "@callstack/eslint-config": "15.0.0",
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.6",
    "@commitlint/config-conventional": "^19.8.1",
    "@react-native-community/cli": "19.1.1",
    "@react-native/typescript-config": "0.79.5",
    "@types/jest": "29.5.14",
    "@types/react": "19.0.10",
    "buffer": "5.7.1",
    "commitlint": "^19.8.1",
    "eslint": "9.32.0",
    "jest": "29.7.0",
    "lefthook": "^1.12.2",
    "prettier": "3.6.2",
    "react": "19.0.0",
    "react-native": "0.79.5",
    "react-native-builder-bob": "0.40.13",
    "ts-jest": "29.4.1",
    "typescript": "5.8.3"
  },
  "peerDependencies": {
    "buffer": ">=5.7.1",
    "react": ">=19.0.0",
    "react-native": ">=0.79.0"
  },
  "peerDependenciesMeta": {
    "buffer": {
      "optional": true
    }
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "codegenConfig": {
    "name": "RNEncodingModules",
    "type": "modules",
    "jsSrcsDir": "./src/specs",
    "android": {
      "javaPackageName": "com.reactnativeencoding"
    },
    "ios": {
      "modulesProvider": {
        "ReactNativeEncodingModule": "ReactNativeEncodingModuleProvider"
      }
    }
  },
  "packageManager": "yarn@4.9.2"
}
