{
  "name": "reactchemy",
  "version": "0.0.3",
  "description": "🟣 The perfect fusion of React Hooks and reusable components to optimize your project.",
  "author": "Dennis Ollhoff <contact@nyxb.xyz>",
  "license": "MIT",
  "homepage": "https://💻nyxb.ws",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nyxb/reactchemy.git"
  },
  "bugs": {
    "url": "https://github.com/nyxb/reactchemy/issues"
  },
  "keywords": [
    "typescript",
    "react",
    "hooks"
  ],
  "exports": {
    ".": {
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "react": "^16.8.0  || ^17.0.0 || ^18.2.0",
    "react-dom": "^16.8.0  || ^17.0.0 || ^18.2.0"
  },
  "devDependencies": {
    "@nyxb/eslint-config": "^0.1.2",
    "@testing-library/react": "^14.0.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@turbo/gen": "^1.10.5",
    "@types/node": "^20.3.1",
    "@types/react": "^18.2.13",
    "date-fns": "^2.30.0",
    "eslint": "^8.43.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.3"
  },
  "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:modules": "rm -rf node_modules",
    "release": "nyxlx changelogen@latest --release && pnpm publish"
  }
}