{
  "name": "reactotron-react-js",
  "version": "3.3.17",
  "description": "A development tool to explore, inspect, and diagnose your React JS/DOM apps.",
  "author": "Infinite Red",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/infinitered/reactotron/issues"
  },
  "homepage": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-react-js",
  "repository": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-react-js",
  "files": [
    "dist",
    "src"
  ],
  "main": "./dist/commonjs/index.js",
  "module": "./dist/module/index.js",
  "types": "./dist/typescript/commonjs/src/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./dist/typescript/commonjs/src/index.d.ts",
      "module": "./dist/module/index.js",
      "default": "./dist/commonjs/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "format": "prettier '*.{js,ts,tsx,json,css,yml}|**/*.{js,ts,tsx,json,css,yml}'",
    "format:check": "yarn format --check",
    "format:write": "yarn format --write",
    "build": "bob build",
    "build:dev": "bob build",
    "clean": "rimraf ./dist",
    "lint": "eslint src --ext .ts,.tsx",
    "tsc": "tsc",
    "typecheck": "tsc --noEmit --emitDeclarationOnly false",
    "ci:lint": "yarn lint",
    "ci:test": "yarn test --runInBand",
    "prepare": "bob build"
  },
  "dependencies": {
    "reactotron-core-client": "2.9.8",
    "stacktrace-js": "2.0.1"
  },
  "devDependencies": {
    "@babel/core": "^7.23.2",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/preset-env": "^7.23.2",
    "@babel/preset-typescript": "^7.23.2",
    "@types/react": "18.2.45",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^29.7.0",
    "eslint": "^8.53.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.29.0",
    "eslint-plugin-n": "^16.2.0",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-standard": "5.0.0",
    "jest": "^29.7.0",
    "npm-run-all": "4.1.5",
    "prettier": "^3.0.3",
    "react-native-builder-bob": "^0.40.13",
    "ts-jest": "^29.1.1",
    "typescript": "^4.9.5"
  },
  "eslintConfig": {
    "root": false,
    "extends": [
      "plugin:react/recommended"
    ],
    "plugins": [
      "react",
      "react-hooks"
    ],
    "settings": {
      "react": {
        "version": "detect"
      }
    },
    "parserOptions": {
      "ecmaFeatures": {
        "jsx": true
      }
    },
    "globals": {
      "__DEV__": false,
      "jasmine": false,
      "beforeAll": false,
      "afterAll": false,
      "beforeEach": false,
      "afterEach": false,
      "test": false,
      "expect": false,
      "describe": false,
      "jest": false,
      "it": false
    }
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testMatch": [
      "**/*.test.ts"
    ]
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "dist",
    "exclude": "**/*.test.{tsx,ts}",
    "targets": [
      "commonjs",
      [
        "module",
        {
          "esm": true
        }
      ],
      "typescript"
    ]
  }
}