{
  "name": "inversify-hooks",
  "version": "4.0.0",
  "description": "Dependency injection for React with TypeScript hooks, powered by InversifyJS.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "author": "Quique Fdez Guerra",
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CKGrafico/inversify-hooks.git"
  },
  "keywords": [
    "inversify",
    "inversifyjs",
    "typescript",
    "dependency injection",
    "react di",
    "react inject",
    "react hooks"
  ],
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "dependencies": {
    "inversify-props": "^3.0.0"
  },
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "devDependencies": {
    "@testing-library/react": "^16.1.0",
    "@types/react": "^19.0.0",
    "@types/react-dom": "^19.0.0",
    "jsdom": "^25.0.1",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "tsup": "^8.3.5",
    "typescript": "^5.7.0",
    "vitest": "^2.1.8"
  }
}
