{
  "name": "gsap-react",
  "private": false,
  "version": "1.3.2",
  "description": "Collection of React utilities and hooks for GSAP",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "gsap",
    "hooks",
    "react",
    "typescript"
  ],
  "author": "David Khierl <hi@davidkhierl.com>",
  "license": "MIT",
  "devDependencies": {
    "@changesets/cli": "^2.26.2",
    "@types/node": "^18.13.0",
    "@types/react": "^18.2.7",
    "eslint": "^8.41.0",
    "gsap": "^3.11.5",
    "prettier": "^2.8.8",
    "prettier-plugin-organize-imports": "^3.2.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^5.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "peerDependencies": {
    "gsap": "^3.11.4",
    "react": "^16 || ^17 || ^18",
    "react-dom": "^16.8.0  || ^17.0.0 || ^18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/davidkhierl/gsap-react"
  },
  "bugs": {
    "url": "https://github.com/davidkhierl/gsap-react/issues"
  },
  "scripts": {
    "build": "pnpm build:cjs && pnpm build:esm",
    "build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/cjs --target es5",
    "build:esm": "tsc -p tsconfig.build.json --module esNext --outDir dist/esm --target es6",
    "clean": "rimraf -rf ./dist",
    "prebuild": "pnpm clean",
    "release": "pnpm build && changeset publish",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}