{
  "name": "@zhin.js/http",
  "version": "1.0.79",
  "description": "HTTP server service for Zhin.js with routing and WebSocket support",
  "type": "module",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "development": "./src/index.ts",
      "import": "./lib/index.js"
    },
    "./router": {
      "types": "./lib/router.d.ts",
      "development": "./src/router.ts",
      "import": "./lib/router.js"
    },
    "./host-rest-api": {
      "types": "./lib/host-rest-api.d.ts",
      "development": "./src/host-rest-api.ts",
      "import": "./lib/host-rest-api.js"
    },
    "./marketplace-rest-api": {
      "types": "./lib/marketplace-rest-api.d.ts",
      "development": "./src/marketplace-rest-api.ts",
      "import": "./lib/marketplace-rest-api.js"
    },
    "./logs-rest-api": {
      "types": "./lib/logs-rest-api.d.ts",
      "development": "./src/logs-rest-api.ts",
      "import": "./lib/logs-rest-api.js"
    },
    "./adapter-api-stubs": {
      "types": "./lib/adapter-api-stubs.d.ts",
      "development": "./src/adapter-api-stubs.ts",
      "import": "./lib/adapter-api-stubs.js"
    }
  },
  "keywords": [
    "zhin",
    "zhin.js",
    "bot",
    "service",
    "http",
    "server",
    "router",
    "websocket",
    "api"
  ],
  "author": {
    "name": "lc-cn",
    "email": "admin@liucl.cn",
    "url": "https://github.com/lc-cn"
  },
  "license": "MIT",
  "repository": {
    "url": "git+https://github.com/zhinjs/zhin.git",
    "type": "git",
    "directory": "plugins/services/http"
  },
  "dependencies": {
    "koa": "^3.2.1",
    "koa-body": "^8.0.0",
    "ws": "^8.21.0",
    "@zhin.js/http-host": "0.1.4",
    "@zhin.js/queue-runtime": "0.0.4",
    "@zhin.js/storage-port": "0.0.2",
    "@zhin.js/schema": "1.0.68"
  },
  "peerDependencies": {
    "zhin.js": "1.0.86"
  },
  "devDependencies": {
    "@types/koa": "latest",
    "@types/koa-bodyparser": "latest",
    "@types/koa__router": "latest",
    "@types/ws": "latest",
    "zhin.js": "1.0.86"
  },
  "files": [
    "src",
    "lib",
    "client",
    "dist",
    "skills",
    "README.md",
    "node",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "build": "pnpm build:node",
    "clean": "rimraf lib",
    "build:node": "tsc"
  }
}