{
  "name": "react-controlled-animations",
  "version": "0.2.2",
  "description": "Utilities for declaratively controlling animations through React hooks",
  "type": "module",
  "exports": {
    ".": "./build/index.js",
    "./*": "./build/*"
  },
  "types": "./build/index.d.ts",
  "repository": "https://github.com/tristanjohnson849/react-controlled-animations",
  "license": "MIT",
  "keywords": [
    "react",
    "hooks",
    "web-animations",
    "waapi",
    "animation",
    "esm"
  ],
  "scripts": {
    "build": "rm tsconfig.tsbuildinfo && rm -rf build/ && tsc -p tsconfig.json",
    "check": "run-s lint test:cov doc",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "lint": "eslint src --ext .ts && prettier \"src/**/*.ts\" --list-different",
    "test": "jest ./src",
    "test:cov": "jest ./src --collectCoverage=true --coverage",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:test": "jest --watch ./src",
    "doc": "typedoc --options typedoc.cjs",
    "doc:wiki": "typedoc --theme github-wiki --options typedoc.cjs --out typedocs/",
    "version": "standard-version",
    "prepare-release": "run-s build check version doc",
    "storybook": "NODE_OPTIONS=--experimental-specifier-resolution=node; storybook dev -p 6006",
    "build-storybook": "NODE_OPTIONS=--experimental-specifier-resolution=node; storybook build  -o stories-build",
    "inc-release": " npm run prepare-release && git push --follow-tags && npm publish"
  },
  "engines": {
    "node": " >=16.15"
  },
  "peerDependencies": {
    "react": "^18.2.0",
    "react-dom": "^18.2.0"
  },
  "devDependencies": {
    "@babel/core": "^7.20.12",
    "@jest/types": "^29.4.3",
    "@storybook/addon-actions": "^7.0.0-beta.50",
    "@storybook/addon-essentials": "^7.0.0-beta.50",
    "@storybook/addon-interactions": "^7.0.0-beta.50",
    "@storybook/addon-links": "^7.0.0-beta.50",
    "@storybook/addon-storysource": "^7.0.0-beta.50",
    "@storybook/react": "^7.0.0-beta.50",
    "@storybook/react-webpack5": "^7.0.0-beta.50",
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/eslint": "^8.21.0",
    "@types/gh-pages": "^3.2.1",
    "@types/jest": "^29.4.0",
    "@types/node": "^18.13.0",
    "@types/prettier": "^2.7.2",
    "@types/react": "^18.0.27",
    "@types/react-dom": "^18.0.10",
    "@types/standard-version": "^7.0.1",
    "@typescript-eslint/eslint-plugin": "^5.51.0",
    "@typescript-eslint/parser": "^5.51.0",
    "babel-jest": "^29.4.2",
    "babel-loader": "^8.3.0",
    "codecov": "^3.8.2",
    "cspell": "^6.22.0",
    "cz-conventional-changelog": "^3.3.0",
    "esbuild": "^0.17.10",
    "eslint": "^8.33.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^5.0.4",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-storybook": "^0.6.10",
    "gh-pages": "^5.0.0",
    "html-webpack-plugin": "^5.5.0",
    "jest": "^29.4.2",
    "jest-environment-jsdom": "^29.4.2",
    "jsdom": "^21.1.0",
    "jsdom-testing-mocks": "^1.7.0",
    "npm-run-all": "^4.1.5",
    "open-cli": "^7.1.0",
    "package-preview": "^4.0.0",
    "prettier": "^2.8.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-test-renderer": "^18.2.0",
    "require-from-string": "^2.0.2",
    "standard-version": "^9.5.0",
    "storybook": "^7.0.0-beta.50",
    "ts-jest": "^29.0.5",
    "ts-loader": "^9.4.2",
    "ts-mockito": "^2.6.1",
    "ts-node": "^10.9.1",
    "type-fest": "^2.15.1",
    "typedoc": "^0.23.24",
    "typedoc-github-wiki-theme": "^1.0.1",
    "typedoc-plugin-markdown": "^3.14.0",
    "typescript": "^4.9.5",
    "webpack": "^5.75.0"
  },
  "files": [
    "build/**/*.js",
    "build/**/*.d.ts",
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "!**/*.test.*",
    "!**/*.stories.*",
    "!**/*.json",
    "!**/testUtils.js",
    "!**/testUtils.d.ts"
  ],
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true,
    "tabWidth": 4,
    "printWidth": 120
  }
}
