{
  "name": "react-native-code-editor-fork",
  "description": "A code editor with syntax highlighting built for React Native applications.",
  "author": "Carlos Rivas",
  "version": "1.0.11",
  "private": false,
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index.ts",
  "files": [
    "/lib",
    "/src"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/RivasCVA/react-native-code-editor"
  },
  "license": "MIT",
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint src --ext .js,.jsx,.ts,.tsx",
    "prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
    "prepare": "husky install && bob build",
    "packlist": "npx npm-packlist"
  },
  "lint-staged": {
    "**/*.{js,jsx,ts,tsx}": [
      "npm run lint",
      "npm run prettier"
    ]
  },
  "dependencies": {
    "react-syntax-highlighter": "^15.4.5"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9",
    "@babel/runtime": "^7.12.5",
    "@react-native-community/eslint-config": "^2.0.0",
    "@react-native-community/hooks": "^2.8.1",
    "@types/jest": "^26.0.23",
    "@types/react-native": "^0.66.15",
    "@types/react-syntax-highlighter": "^13.5.2",
    "@types/react-test-renderer": "^17.0.1",
    "@typescript-eslint/eslint-plugin": "^5.7.0",
    "@typescript-eslint/parser": "^5.7.0",
    "babel-jest": "^26.6.3",
    "eslint": "^7.14.0",
    "husky": "^7.0.4",
    "jest": "^26.6.3",
    "lint-staged": "^12.3.7",
    "metro-react-native-babel-preset": "^0.66.2",
    "react": "^17.0.2",
    "react-native": "^0.67.2",
    "react-native-builder-bob": "^0.18.2",
    "react-native-safe-area-context": "^3.3.2",
    "react-test-renderer": "17.0.2",
    "typescript": "^4.4.4"
  },
  "resolutions": {
    "@types/react": "^17"
  },
  "jest": {
    "preset": "react-native",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "modulePathIgnorePatterns": [
      "lib"
    ]
  },
  "keywords": [
    "react",
    "react-native",
    "code",
    "code editor",
    "syntax",
    "syntax highlighter",
    "beautify"
  ],
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
