{
  "name": "@fozy-labs/rx-toolkit",
  "version": "0.12.3",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "prettier": "@fozy-labs/js-configs/prettier",
  "devDependencies": {
    "@fozy-labs/js-configs": "^0.1.3",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^25.3.5",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@vitest/coverage-v8": "^4.0.18",
    "@vitest/ui": "^4.0.18",
    "concurrently": "9.2.0",
    "eslint": "^9.20.0",
    "jiti": "^2.4.0",
    "jsdom": "^28.1.0",
    "prettier": "^3.5.0",
    "react-dom": "^19.2.0",
    "rimraf": "6.1.2",
    "tsc-alias": "^1.8.16",
    "tsconfig-paths": "4.2.0",
    "typescript": "5.9.2",
    "vitest": "^4.0.18",
    "xstate": "^5.32.5",
    "zod": "4.1.11"
  },
  "peerDependencies": {
    "react": "^19.0.0",
    "rxjs": "^7.0.0",
    "zod": "^4.0.0"
  },
  "description": "Набор инструментов для реактивного управления состоянием, построенный поверх RxJS.",
  "author": "Vladimir Panev <vova6255@gmail.com>",
  "homepage": "https://github.com/fozy-labs/rx-toolkit",
  "license": "MIT",
  "keywords": [
    "react",
    "rxjs",
    "toolkit",
    "state-management"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fozy-labs/rx-toolkit.git"
  },
  "bugs": {
    "url": "https://github.com/fozy-labs/rx-toolkit/issues"
  },
  "files": [
    "dist",
    "docs",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "preferGlobal": false,
  "dependencies": {
    "immer": "^10.1.3"
  },
  "scripts": {
    "build": "rimraf ./dist && tsc && tsc-alias --resolve-full-paths",
    "build:watch": "pnpm run build && (concurrently \"tsc -w\" \"tsc-alias -w --resolve-full-paths\")",
    "ts-check": "tsc --noEmit",
    "test": "tsc -p tsconfig.test.json && vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "format": "prettier --write src/",
    "format:check": "prettier --check src/",
    "check:all": "pnpm run ts-check && pnpm run test && pnpm run lint && pnpm run format:check",
    "demos": "pnpm --dir apps/demos run dev"
  }
}