{
  "name": "react-native-cryptopp",
  "version": "0.2.0",
  "cryptoppVersion": "8.6.0framework",
  "description": "React Native Cryptopp",
  "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",
    "cpp",
    "cryptopp",
    "cryptopp-pem",
    "scripts",
    "react-native-cryptopp.podspec",
    "!lib/typescript/example",
    "!android/build",
    "!ios/build",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!android/.cxx",
    "!android/.gradle",
    "!cpp/ios",
    "!cpp/android",
    "!cpp/cryptopp"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
    "prepare": "bob build && husky install && yarn download_cryptopp",
    "release": "release-it",
    "clang-format": "find cpp/ -iname *.h -o -iname *.cpp | xargs clang-format -i",
    "compile_cryptopp": "yarn node scripts/compile_cryptopp.js",
    "get_cryptopp_version": "yarn node scripts/get_cryptopp_version.js",
    "download_cryptopp": "yarn node scripts/download_cryptopp.js"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "crypto",
    "cryptopp",
    "crypto++",
    "cryptography",
    "react",
    "native",
    "react-native",
    "react-native-cryptopp",
    "react-native-crypto",
    "react-native-cryptography",
    "react-native-aes",
    "react-native-rsa",
    "aes",
    "rsa"
  ],
  "repository": "https://github.com/JiriHoffmann/react-native-cryptopp",
  "author": "Jiri Hoffmann <hoffmaji@mail.gvsu.edu> (https://github.com/JiriHoffmann)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/JiriHoffmann/react-native-cryptopp/issues"
  },
  "homepage": "https://github.com/JiriHoffmann/react-native-cryptopp#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@react-native-community/eslint-config": "^3.0.1",
    "@release-it/conventional-changelog": "^4.2.2",
    "@types/archiver": "^5.3.1",
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.23",
    "@types/react": "^17.0.43",
    "@types/react-native": "0.67.3",
    "archiver": "^5.3.0",
    "clang-format": "^1.6.0",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "extract-zip": "^2.0.1",
    "husky": "^7.0.4",
    "jest": "^27.5.1",
    "pod-install": "^0.1.32",
    "prettier": "^2.6.1",
    "react": "18.0.0",
    "react-native": "0.68.0",
    "react-native-builder-bob": "^0.18.2",
    "release-it": "^14.14.0",
    "typescript": "^4.6.3"
  },
  "peerDependencies": {
    "extract-zip": "*",
    "react": "*",
    "react-native": "*",
    "rimraf": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "angular"
      }
    }
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}