{
  "name": "@utexo/rgb-sdk-rn",
  "version": "1.0.0-beta.20",
  "description": "React Native SDK for Bitcoin RGB Protocol",
  "main": "./lib/module/index.js",
  "types": "./lib/typescript/src/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./lib/typescript/src/index.d.ts",
      "default": "./lib/module/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "cpp",
    "scripts",
    "*.podspec",
    "!src/bindings/extracted-android/**",
    "!src/bindings/.tmp-rln-android/**",
    "!lib/module/bindings/**",
    "!lib/typescript/src/bindings/**",
    "!android/src/main/jniLibs/**",
    "!android/src/main/java/org/utexo/**",
    "!ios/build",
    "!ios/rgb_libFFI.xcframework",
    "!ios/RGBLightningNode.xcframework",
    "!ios/RGBLightningNodeFFI.h",
    "!ios/RGBLightningNodeFFI.modulemap",
    "!ios/RGBLightningNode.swift",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/local.properties",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*"
  ],
  "scripts": {
    "dev": "tsc -w",
    "clean": "del-cli android/build ios/build lib",
    "prepare": "bob build",
    "postinstall": "node scripts/download-rln-bindings.js && node scripts/setup-rln-bindings.js",
    "typecheck": "tsc",
    "codegen": "mkdir -p android/build/generated/source/codegen && node node_modules/@react-native/codegen/lib/cli/combine/combine-js-to-schema-cli.js android/build/generated/source/codegen/schema.json src/binding/NativeRgb.ts && node node_modules/@react-native/codegen/lib/cli/generators/generate-all.js android/build/generated/source/codegen/schema.json RgbSpec android/build/generated/source/codegen com.rgbsdkrn",
    "build": "bob build",
    "build:watch": "tsc -w",
    "prettier": "prettier --write \"**/*.{js,ts,tsx}\"",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "version:patch": "npm version patch && git push && git push --tags && npm publish --access public",
    "version:minor": "npm version minor && git push && git push --tags && npm publish --access public",
    "version:major": "npm version major && git push && git push --tags && npm publish --access public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/UTEXO-Protocol/rgb-sdk-rn.git"
  },
  "keywords": [
    "rgb",
    "rgb-protocol",
    "bitcoin",
    "sdk",
    "taproot",
    "assets",
    "blockchain",
    "react-native",
    "ios",
    "android"
  ],
  "license": "MIT",
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "devDependencies": {
    "@eslint/js": "^9.35.0",
    "@types/node": "^22.17.2",
    "@types/react": "^19.2.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "del-cli": "^6.0.0",
    "eslint": "^9.35.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "prettier": "^3.0.0",
    "react-native": "*",
    "react-native-builder-bob": "^0.40.17",
    "typescript": "^5.9.2"
  },
  "dependencies": {
    "@noble/hashes": "^2.0.1",
    "@noble/secp256k1": "3.0.0",
    "@scure/base": "^2.0.0",
    "@scure/bip32": "^2.0.1",
    "@scure/bip39": "^2.0.1",
    "@scure/btc-signer": "^2.0.1",
    "@utexo/rgb-sdk-core": "1.0.0-beta.4"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  },
  "codegenConfig": {
    "name": "RgbSpec",
    "type": "modules",
    "jsSrcsDir": "src",
    "android": {
      "javaPackageName": "com.rgbsdkrn"
    }
  },
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  }
}
