{
  "name": "@huo15/dingtalk-connector-pro",
  "version": "1.0.12",
  "description": "火一五定制版钉钉 OpenClaw 连接器 - 支持记忆系统集成、会话管理、AI Card 流式响应",
  "main": "./dist/index.js",
  "type": "module",
  "scripts": {
    "build": "tsc 2>/dev/null; cp package.json dist/; cp openclaw.plugin.json dist/",
    "lint": "echo 'Lint check skipped'",
    "lint:fix": "echo 'Lint fix skipped'",
    "test": "vitest run tests/gateway-methods.unit.test.ts",
    "test:unit": "vitest run tests/gateway-methods.unit.test.ts",
    "test:integration": "vitest run tests/gateway-methods.unit.test.ts",
    "test:all": "vitest run",
    "test:watch": "vitest watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage --exclude tests/gateway-methods.test.ts",
    "type-check": "npx tsc --noEmit",
    "version:check": "echo 'Version check skipped'",
    "release:prepare": "echo 'Release prepare skipped'",
    "release:publish": "npm publish --access public",
    "release:verify": "npm view @dingtalk-real-ai/dingtalk-connector version",
    "typecheck": "tsc --noEmit",
    "release": "bash scripts/release.sh",
    "prepublishOnly": "npm run build",
    "clean": "rm -rf node_modules package-lock.json",
    "install:fresh": "npm run clean && npm install",
    "dev": "echo 'Run: openclaw start'",
    "validate": "npm run lint && npm run type-check && npm run version:check"
  },
  "keywords": [
    "dingtalk",
    "channel",
    "stream",
    "ai-card",
    "connector"
  ],
  "author": "DingTalk Real Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DingTalk-Real-AI/dingtalk-openclaw-connector.git"
  },
  "homepage": "https://github.com/DingTalk-Real-AI/dingtalk-openclaw-connector#readme",
  "bugs": "https://github.com/DingTalk-Real-AI/dingtalk-openclaw-connector/issues",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "axios": "1.6.0",
    "dingtalk-stream": "2.1.4",
    "form-data": "^4.0.0",
    "zod": "^4.3.6"
  },
  "optionalDependencies": {
    "mammoth": "^1.8.0"
  },
  "peerDependencies": {
    "openclaw": "^2026.3.23-2"
  },
  "peerDependenciesMeta": {
    "openclaw": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^20.19.37",
    "@vitest/coverage-v8": "^2.0.0",
    "@vitest/ui": "^2.1.9",
    "openclaw": "^2026.3.23-2",
    "typescript": "^5.6.0",
    "vitest": "^2.1.9"
  },
  "openclaw": {
    "extensions": [
      "./index.ts"
    ],
    "channel": {
      "id": "dingtalk-connector",
      "label": "DingTalk",
      "selectionLabel": "DingTalk (Stream Mode)",
      "detailLabel": "DingTalk Bot",
      "blurb": "钉钉企业内部机器人，使用 Stream 模式连接，无需公网 IP，支持 AI Card 流式响应。",
      "markdownCapable": true,
      "commands": {
        "nativeCommandsAutoEnabled": true,
        "nativeSkillsAutoEnabled": true
      }
    },
    "installDependencies": true,
    "runtimeExtensions": [
      "./dist/index.js"
    ]
  },
  "files": [
    "index.ts",
    "openclaw.plugin.json",
    "src/**/*",
    "dist/**/*",
    "README.md",
    "LICENSE"
  ]
}
