{
  "name": "@thoughtbot/superglue",
  "version": "1.0.3",
  "description": "Use a vanilla Rails with React and Redux",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "lint": "run-p lint:eslint lint:types lint:prettier",
    "lint:eslint": "eslint --max-warnings=0 --ext js,jsx,ts,tsx ./lib",
    "lint:prettier": "prettier --check '**/*' --ignore-unknown",
    "lint:types": "tsc",
    "fix:prettier": "prettier --write '**/*' --ignore-unknown",
    "test": "vitest",
    "test:run": "vitest run",
    "test:cov": "vitest --coverage",
    "test:all": "npm lint && npm test:run",
    "pub:beta": "npm build && npm publish --tag beta",
    "pub:release": "npm build && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thoughtbot/superglue.git"
  },
  "author": "Johny Ho",
  "main": "dist/cjs/superglue.cjs",
  "module": "dist/superglue.mjs",
  "types": "dist/superglue.d.mts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/superglue.d.mts",
      "import": "./dist/superglue.mjs",
      "default": "./dist/cjs/superglue.cjs"
    },
    "./action_creators": {
      "types": "./dist/action_creators.d.mts",
      "import": "./dist/action_creators.mjs",
      "default": "./dist/cjs/action_creators.cjs"
    }
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/thoughtbot/superglue/issues"
  },
  "homepage": "https://github.com/thoughtbot/superglue#readme",
  "devDependencies": {
    "@testing-library/dom": "^10.4.0",
    "@testing-library/jest-dom": "^6.5.0",
    "@testing-library/react": "^16.0.1",
    "@testing-library/user-event": "^14.5.2",
    "@types/node": "^22.10.1",
    "@typescript-eslint/eslint-plugin": "^7.15.0",
    "@typescript-eslint/parser": "^7.15.0",
    "@vitejs/plugin-react": "^4.3.1",
    "@vitest/coverage-v8": "^2.0.2",
    "abortcontroller-polyfill": "^1.7.3",
    "eslint": "^8.57.0",
    "eslint-plugin-react": "^7.34.3",
    "fetch-headers": "^2.0.0",
    "fetch-mock": "^9.11.0",
    "jsdom": "^24.1.0",
    "node-fetch": "^2.6.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.3.1",
    "prettier-eslint": "^16.3.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-redux": "^7.2.9",
    "redux": "^5.0.1",
    "redux-mock-store": "^1.5.4",
    "redux-thunk": "^3.1.0",
    "tsup": "^8.1.0",
    "typedoc": "~0.26.5",
    "typedoc-plugin-markdown": "~4.2.3",
    "typedoc-plugin-missing-exports": "~3.0.0",
    "typescript": "^5.5.3",
    "vitest": "^2.0.2"
  },
  "peerDependencies": {
    "@reduxjs/toolkit": "^2.2.8",
    "react": "^18 || ^19",
    "react-redux": "^9 || ^8"
  },
  "dependencies": {
    "history": "^5.3.0"
  }
}
