{
  "name": "storion",
  "version": "0.20.1",
  "description": "Reactive stores for modern apps. Type-safe. Auto-tracked. Effortlessly composable",
  "type": "module",
  "main": "./dist/storion.js",
  "module": "./dist/storion.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/storion.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "default": "./dist/react/index.js"
    },
    "./devtools": {
      "types": "./dist/devtools/index.d.ts",
      "default": "./dist/devtools/index.js"
    },
    "./devtools-panel": {
      "types": "./dist/devtools-panel/index.d.ts",
      "default": "./dist/devtools-panel/index.js"
    },
    "./async": {
      "types": "./dist/async/index.d.ts",
      "default": "./dist/async/index.js"
    },
    "./persist": {
      "types": "./dist/persist/index.d.ts",
      "default": "./dist/persist/index.js"
    },
    "./network": {
      "types": "./dist/network/index.d.ts",
      "default": "./dist/network/index.js"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "scripts": {
    "dev": "vite build --watch",
    "build": "tsc && vite build",
    "build:check": "tsc --noEmit",
    "build:watch": "tsc && vite build --watch",
    "watch": "pnpm run build:watch",
    "test": "vitest --no-watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage --no-watch",
    "dry": "npm pack --dry-run",
    "preversion": "pnpm test && pnpm run build",
    "version:patch": "npm version patch -m \"chore: bump version to %s\"",
    "version:minor": "npm version minor -m \"chore: bump version to %s\"",
    "version:major": "npm version major -m \"chore: bump version to %s\"",
    "prepublishOnly": "pnpm run build",
    "release:patch": "git status --porcelain | grep -q . && echo 'Error: uncommitted changes' && exit 1; pnpm version:patch && git add -A && git commit -m 'chore: release patch' && git push && npm publish",
    "release:minor": "git status --porcelain | grep -q . && echo 'Error: uncommitted changes' && exit 1; pnpm version:minor && git add -A && git commit -m 'chore: release minor' && git push && npm publish",
    "release:major": "git status --porcelain | grep -q . && echo 'Error: uncommitted changes' && exit 1; pnpm version:major && git add -A && git commit -m 'chore: release major' && git push && npm publish",
    "publish:dry": "npm publish --dry-run"
  },
  "keywords": [
    "state-management",
    "store",
    "reactive",
    "react",
    "typescript",
    "dependency-tracking",
    "fine-grained",
    "effects",
    "proxy",
    "hooks",
    "container",
    "dependency-injection"
  ],
  "author": "linq2js",
  "license": "MIT",
  "homepage": "https://github.com/linq2js/storion#readme",
  "bugs": {
    "url": "https://github.com/linq2js/storion/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/linq2js/storion.git"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "dependencies": {
    "immer": "^11.0.1",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.1.5",
    "@testing-library/react": "^16.3.0",
    "@types/lodash": "^4.17.21",
    "@types/node": "^22.10.1",
    "@types/react": "^19.0.0",
    "@types/react-dom": "^19.0.0",
    "@vitejs/plugin-react": "^4.2.1",
    "@vitest/coverage-v8": "^1.1.0",
    "@vitest/ui": "^1.1.0",
    "jsdom": "^22.1.0",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "terser": "^5.36.0",
    "typescript": "^5.3.3",
    "vite": "^5.0.8",
    "vite-plugin-dts": "^3.6.4",
    "vitest": "^1.1.0"
  }
}
