{
  "name": "@rx-signals/store",
  "version": "3.0.0-rc46",
  "description": "Reactive state- and effects-management with behaviors and event streams",
  "author": "Gerd Neudert",
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/gneu77/rx-signals"
  },
  "scripts": {
    "format": "prettier --write \"src/**/*.ts\"",
    "build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
    "test": "jest --detectOpenHandles --config jestconfig.json",
    "test-coverage": "jest --detectOpenHandles --config jestconfig.json --coverage",
    "lint": "eslint --ext .ts \"src/**\"",
    "generate-docs": "typedoc --out docs/tsdoc src",
    "pre-wip": "rm -rf dist && rm -rf coverage && npm run format && npm run lint && npm run test && npm run build",
    "pre-publish": "rm -rf docs/tsdoc && npm run pre-wip && npm run generate-docs"
  },
  "keywords": [
    "rxjs",
    "reactive programming",
    "behaviors",
    "events",
    "signals",
    "streams",
    "store",
    "effects management",
    "state management",
    "dependency injection",
    "typescript"
  ],
  "files": [
    "dist",
    "src",
    "CHANGELOG.md",
    "LICENSE",
    "package.json",
    "README.md",
    "tsconfig.json"
  ],
  "dependencies": {
    "rxjs": "^7.5.5"
  },
  "devDependencies": {
    "@types/jest": "^28.1.8",
    "@typescript-eslint/eslint-plugin": "^5.53.0",
    "@typescript-eslint/parser": "^5.53.0",
    "eslint": "^8.34.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-jsx-a11y": "^6.7.1",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^28.1.3",
    "prettier": "^2.8.4",
    "ts-jest": "^28.0.8",
    "typedoc": "^0.23.25",
    "typescript": "^4.9.5"
  },
  "volta": {
    "node": "18.12.1"
  }
}
