{
  "name": "@tripetto/runner-react-hook",
  "title": "Tripetto Runner React Hook",
  "version": "5.0.2",
  "description": "Wraps the Tripetto Runner in a React Hook.",
  "license": "MIT",
  "private": false,
  "homepage": "https://gitlab.com/tripetto/runner-react-hook",
  "keywords": [
    "tripetto"
  ],
  "author": {
    "name": "Mark van den Brink",
    "email": "mark@vandenbr.ink",
    "url": "http://mark.vandenbr.ink"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/tripetto/runner-react-hook.git"
  },
  "bugs": {
    "url": "https://gitlab.com/tripetto/runner-react-hook/issues"
  },
  "main": "./dist/es5/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.mjs",
      "require": "./dist/es5/index.js",
      "types": "./dist/types/index.d.ts",
      "default": "./dist/es5/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "update": "npm-check -su && node ./tasks/update.js",
    "format": "prettier --trailing-comma es5 --write \"src/**/*.ts\" \"tasks/**/*.js\" \"*.json\" \"!package-lock.json\" \"*.yml\" \"rollup.config.mjs\"",
    "lint": "eslint ./src/**/*.ts",
    "stats": "ts-stats",
    "make:clean": "shx rm -rf *.tgz ./dist/*",
    "make:compile": "tsc",
    "make:es5": "tsc --target ES5 --module CommonJS --outDir ./dist/es5/ --noEmit false --pretty --removeComments --sourceMap false && shx rm -rf ./dist/es5/tests/ && prettier --ignore-path=.prettierignore --trailing-comma es5 --write \"dist/es5/**/*.js\"",
    "make:esm": "rollup -c && prettier --ignore-path=.prettierignore --trailing-comma es5 --write \"dist/esm/**/*.mjs\"",
    "make:types": "tsc --declaration --noEmit false --emitDeclarationOnly --diagnostics --outDir ./dist/types/ && shx rm -rf ./dist/types/tests/ && prettier --ignore-path=.prettierignore --trailing-comma es5 --tab-width 4 --write \"dist/types/**/*.d.ts\"",
    "make:build": "npm run make:clean && npm run make:es5 && npm run make:esm && npm run make:types",
    "make": "npm run lint && npm run make:build && npm run stats",
    "preversion": "npm run format && npm run lint && npm run make:compile && exit-on-dirty-git",
    "postversion": "git push --follow-tags",
    "prepack": "npm run make",
    "prepublishOnly": "exit-on-dirty-git",
    "publish:next": "git-branch-is next && git push --set-upstream origin next && npm version prerelease && npm publish --tag next",
    "publish:patch": "git-branch-is master && npm version patch && npm publish",
    "publish:minor": "git-branch-is master && npm version minor && npm publish",
    "publish:major": "git-branch-is master && npm version major && npm publish"
  },
  "devDependencies": {
    "@compodoc/ts-stats": "^1.1.1",
    "@rollup/plugin-typescript": "^11.1.5",
    "@tripetto/runner": "^8.0.0",
    "@types/react": "^18.2.27",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "eslint": "^8.51.0",
    "exit-on-dirty-git": "^1.0.1",
    "git-branch-is": "^4.0.0",
    "npm-check": "^6.0.1",
    "prettier": "^3.0.3",
    "react": "^18.2.0",
    "rollup": "^3.26.3",
    "shx": "^0.3.4",
    "tslib": "^2.6.2",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "@tripetto/runner": ">= 8.x",
    "react": ">= 16.x",
    "tslib": ">= 2.x"
  }
}
