{
  "name": "@kb-labs/plugin-runtime",
  "description": "Plugin System Runtime - Context factory, sandboxed shims, and APIs",
  "version": "2.117.0",
  "type": "module",
  "license": "MIT",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./sandbox": {
      "types": "./dist/sandbox/index.d.ts",
      "import": "./dist/sandbox/index.js",
      "require": "./dist/sandbox/index.js"
    },
    "./sandbox/bootstrap": {
      "types": "./dist/sandbox/bootstrap.d.ts",
      "import": "./dist/sandbox/bootstrap.js",
      "require": "./dist/sandbox/bootstrap.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@kb-labs/core-contracts": "2.117.0",
    "@kb-labs/core-ipc": "2.117.0",
    "@kb-labs/core-platform": "2.117.0",
    "@kb-labs/plugin-contracts": "2.117.0",
    "@kb-labs/core-resource-broker": "2.117.0",
    "@kb-labs/llm-router": "2.117.0",
    "@kb-labs/shared-cli-ui": "2.117.0"
  },
  "devDependencies": {
    "@types/node": "^24.3.3",
    "@vitest/ui": "^3.0.0",
    "eslint": "^9",
    "rimraf": "^6.0.1",
    "tsup": "^8.5.0",
    "typescript": "^5.6.3",
    "vitest": "^3.2.6",
    "@kb-labs/devkit": "2.117.0",
    "@kb-labs/shared-testing": "2.117.0"
  },
  "engines": {
    "node": ">=22.0.0",
    "pnpm": ">=9.0.0"
  },
  "keywords": [
    "kb-labs",
    "plugin",
    "runtime",
    "v3"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "scripts": {
    "build": "pnpm clean && tsup --config tsup.config.ts",
    "clean": "rimraf dist",
    "dev": "tsup --config tsup.config.ts --watch",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint . --fix",
    "test": "vitest run --passWithNoTests",
    "test:watch": "vitest",
    "type-check": "tsc --noEmit"
  }
}