{
  "name": "react-runtime-pipe",
  "version": "1.0.0",
  "description": "A backend-style runtime for React with middleware, DI, plugins, and structured action execution.",
  "license": "MIT",
  "author": "Delpi.Kye",
  "sideEffects": false,
  "type": "module",
  "main": "./build/cjs/index.cjs",
  "module": "./build/esm/index.js",
  "types": "./build/index.d.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/esm/index.js",
      "require": "./build/cjs/index.cjs"
    },
    "./middleware": {
      "types": "./build/middleware/index.d.ts",
      "import": "./build/esm/middleware/index.js",
      "require": "./build/cjs/middleware/index.js"
    },
    "./plugin": {
      "types": "./build/plugin/index.d.ts",
      "import": "./build/esm/plugin/index.js",
      "require": "./build/cjs/plugin/index.js"
    },
    "./react": {
      "types": "./build/react/index.d.ts",
      "import": "./build/esm/react/index.js",
      "require": "./build/cjs/react/index.js"
    }
  },
  "files": [
    "build",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rimraf build",
    "build": "rollup -c",
    "cb": "npm run clean && npm run build",
    "lint": "eslint \"src/**/*.{ts,tsx}\"",
    "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run clean && npm run lint && npm run typecheck && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/delpikye-v/react-runtime-pipe.git"
  },
  "homepage": "https://github.com/delpikye-v/react-runtime-pipe#readme",
  "bugs": {
    "url": "https://github.com/delpikye-v/react-runtime-pipe/issues"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/delpikye-v"
  },
  "keywords": [
    "react",
    "react-runtime",
    "runtime",
    "execution-runtime",
    "execution-engine",
    "action-runtime",
    "middleware",
    "middleware-pipeline",
    "plugin-system",
    "dependency-injection",
    "di-container",
    "orchestration",
    "event-driven",
    "event-bus",
    "frontend-runtime",
    "react-architecture",
    "systems-design",
    "runtime-context",
    "typed-actions",
    "typescript",
    "frontend-framework",
    "headless-runtime",
    "async-flow",
    "workflow-engine",
    "react-hooks",
    "react-state",
    "react-patterns",
    "state-orchestration",
    "frontend-infrastructure",
    "app-runtime",
    "framework-agnostic"
  ],
  "peerDependencies": {
    "react": "^18 || ^19",
    "react-dom": "^18 || ^19"
  },
  "dependencies": {
    "eventbus-z": "^2.4.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@types/node": "^25.5.0",
    "@types/react": "^18.2.38",
    "@types/react-dom": "^18.2.15",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.5",
    "eslint-plugin-simple-import-sort": "^13.0.0",
    "eslint-plugin-unused-imports": "^4.4.1",
    "prettier": "^3.8.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^5.0.5",
    "rollup": "^4.12.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "rollup-plugin-typescript2": "^0.37.0",
    "tslib": "^2.8.1",
    "tsx": "^4.21.0",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18"
  }
}