{
  "name": "zustand-di",
  "version": "0.0.16",
  "private": false,
  "description": "dependency injection for zustand with react context",
  "keywords": [
    "zustand",
    "react",
    "context",
    "dependency-injection"
  ],
  "homepage": "https://github.com/charkour/zustand-di",
  "bugs": {
    "url": "https://github.com/charkour/zustand-di/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/charkour/zustand-di.git"
  },
  "funding": {
    "type": "individual",
    "url": "https://github.com/sponsors/charkour"
  },
  "license": "MIT",
  "author": "Charles Kornoelje",
  "type": "module",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "package.json"
  ],
  "devDependencies": {
    "@types/react": "18.3.3",
    "react": "18.3.1",
    "tsup": "8.0.2",
    "typescript": "5.4.5",
    "zustand": "4.5.2"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
    "zustand": "^4.4.0 || ^5.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": false
    },
    "zustand": {
      "optional": false
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "pnpm --filter tests dev",
    "size": "pnpm --filter size size",
    "test": "pnpm --filter tests test",
    "test:ci": "pnpm --filter tests test:ci"
  }
}