{
  "name": "@aesop-fables/scrinium",
  "version": "1.0.1",
  "description": "A fully observable data projection/mutation layer for react, built on top of rxjs",
  "type": "commonjs",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    }
  },
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "build": "rimraf ./lib && tsc",
    "docs": "npx typedoc ./src/index.ts",
    "format": "prettier --write \"src/**/*.(js|ts)\"",
    "lint": "eslint src --ext .js,.ts",
    "lint:fix": "eslint src --fix --ext .js,.ts",
    "test": "jest --config jest.config.js --runInBand",
    "test:ci": "jest --config jest.config.js --ci",
    "test:integration": "jest --config jest.integration.config.js --runInBand",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "1.0.1",
    "postversion": "git push && git push --tags"
  },
  "devDependencies": {
    "@aesop-fables/containr": "^0.6.1",
    "@aesop-fables/containr-react": "^0.4.1",
    "@testing-library/jest-dom": "^6.1.4",
    "@testing-library/react": "^14.1.0",
    "@types/events": "^3.0.0",
    "@types/jest": "^29.4.0",
    "@types/node": "^20.8.10",
    "@types/react": "^18.0.26",
    "@typescript-eslint/eslint-plugin": "^7.6.0",
    "@typescript-eslint/parser": "^7.6.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jest": "28.2.0",
    "eslint-plugin-prettier": "^5.1.3",
    "jest": "^29.6.4",
    "jest-environment-jsdom": "^29.3.1",
    "jest-junit": "^16.0.0",
    "jest-mock-extended": "^3.0.1",
    "prettier": "^3.2.5",
    "react": "18.3.1",
    "react-dom": "18.3.1",
    "reflect-metadata": "^0.2.2",
    "rxjs": "^7.8.0",
    "ts-jest": "29.1.1",
    "typedoc": "^0.25.3",
    "typescript": "5.4.5"
  },
  "files": [
    "lib/**/*"
  ],
  "peerDependencies": {
    "@aesop-fables/containr": ">= 0.6.1",
    "@aesop-fables/containr-react": ">= 0.4.0",
    "react": ">= 17.x",
    "reflect-metadata": ">= 0.2.x",
    "rxjs": "7.x"
  },
  "jest-junit": {
    "outputDirectory": "reports",
    "outputName": "jest-junit.xml",
    "ancestorSeparator": " › ",
    "uniqueOutputName": "false",
    "suiteNameTemplate": "{filepath}",
    "classNameTemplate": "{classname}",
    "titleTemplate": "{title}"
  },
  "dependencies": {
    "async-mutex": "^0.5.0"
  }
}
