{
  "name": "fluxdom",
  "version": "0.12.0",
  "description": "Hierarchical state management that scales with your ambition",
  "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"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react.js",
      "require": "./dist/react.cjs"
    }
  },
  "scripts": {
    "build": "vite build && tsc -p tsconfig.build.json",
    "test": "vitest run",
    "prepublish:patch": "node scripts/publish.js pre patch",
    "prepublish:minor": "node scripts/publish.js pre minor",
    "prepublish:major": "node scripts/publish.js pre major",
    "postpublish": "node scripts/publish.js post",
    "release:patch": "node scripts/publish.js full patch",
    "release:minor": "node scripts/publish.js full minor",
    "release:major": "node scripts/publish.js full major"
  },
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@testing-library/react": "^16.3.1",
    "@types/lodash": "^4.17.23",
    "@types/node": "^20.0.0",
    "@types/react": "^19.2.5",
    "@vitest/coverage-v8": "^1.6.1",
    "happy-dom": "^20.1.0",
    "typescript": "^5.0.0",
    "vite": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "dependencies": {
    "lodash": "^4.17.21"
  }
}
