{
  "name": "fastrx",
  "version": "3.4.1",
  "description": "A lightweight, high-performance reactive stream library",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./es/index.d.ts",
  "exports": {
    ".": {
      "types": "./es/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "es",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "clean": "node -e \"for (const path of ['es', 'dist']) require('node:fs').rmSync(path, { recursive: true, force: true })\"",
    "test": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
    "build:devtools": "vite build --config devtools/devtools/panel/vite.config.ts",
    "site:dev": "vite --config site/vite.config.ts",
    "site:build": "vite build --config site/vite.config.ts",
    "site:typecheck": "tsc -p site/tsconfig.json --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/langhuihui/fastrx.git"
  },
  "keywords": [
    "rxjs",
    "reactive",
    "observable",
    "streams",
    "typescript",
    "fast"
  ],
  "author": "langhuihui",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/langhuihui/fastrx/issues"
  },
  "homepage": "https://rx.langhuihui.com/",
  "devDependencies": {
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.4",
    "@vitejs/plugin-react": "^6.0.5",
    "@vitest/coverage-v8": "^4.1.10",
    "@xyflow/react": "^12.3.0",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "rollup": "^4.62.3",
    "typescript": "^7.0.2",
    "vite": "^8.2.0",
    "vitest": "^4.1.10"
  }
}
