{ "private": true, "license": "MIT", "workspaces": [ "packages/*" ], "bundlewatch": { "ci": { "trackBranches": [ "main" ] }, "files": [ { "path": "./packages/core/dist/core.cjs.production.min.js", "maxSize": "6 kB", "compression": "none" }, { "path": "./packages/dom/dist/dom.cjs.production.min.js", "maxSize": "2 kB", "compression": "none" }, { "path": "./packages/utils/dist/utils.cjs.production.min.js", "maxSize": "5 kB", "compression": "none" } ] }, "scripts": { "build": "npm run build --workspace=@react-rxjs/core && npm run build --workspace=@react-rxjs/utils --workspace=@react-rxjs/dom", "lint": "npm run lint --workspaces", "format": "npm run format --workspaces", "test": "npm run test --workspaces", "prepare": "husky install" }, "prettier": { "printWidth": 80, "semi": false, "trailingComma": "all" }, "devDependencies": { "@babel/preset-env": "^7.26.0", "@babel/preset-typescript": "^7.26.0", "@testing-library/react": "^16.1.0", "@types/node": "^22.10.5", "@types/react": "^19.0.4", "@types/react-dom": "^19.0.2", "@vitest/coverage-v8": "^2.1.8", "esbuild": "^0.24.2", "expose-gc": "^1.0.0", "husky": ">=8.0.3", "jest-environment-jsdom": "^29.7.0", "jsdom": "^26.0.0", "lint-staged": "^15.3.0", "prettier": "^3.4.2", "react": "^19.0.0", "react-dom": "^19.0.0", "react-test-renderer": "^19.0.0", "rxjs": "^7.8.1", "tslib": "^2.8.1", "typescript": "^5.7.3", "vitest": "^2.1.8" }, "lint-staged": { "*.{js,jsx,ts,tsx,json,md}": "prettier --write" } }