{
  "name": "@wpscli/cli-shared",
  "version": "0.2.0",
  "description": "WPS AI Agent CLI client for document conversion",
  "author": "Kingsoft Office Software Corporation",
  "homepage": "https://www.wps.com/",
  "license": "UNLICENSED",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "commander": "^13.0.0",
    "fast-glob": "^3.3.3",
    "ora": "^9.4.0",
    "@wpscli/core": "0.2.0"
  },
  "devDependencies": {
    "@types/node": "^25.9.2",
    "rimraf": "^6.0.0",
    "typescript": "^5.8.0",
    "vitest": "^3.2.0",
    "@wpscli/flavor-cn": "0.2.0",
    "@wpscli/flavor-intl": "0.2.0"
  },
  "files": [
    "dist",
    "wpscli.defaults.json",
    "!dist/**/*.map"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "keywords": [
    "wps",
    "pdf",
    "convert",
    "cli",
    "agent"
  ],
  "scripts": {
    "build": "node ../../scripts/sync-skill-to-cli.mjs && tsc && node ../../scripts/copy-oauth-pages.mjs template && node --input-type=module -e \"import { chmodSync } from 'node:fs'; chmodSync('dist/index.js', 0o755)\"",
    "dev": "tsc --watch",
    "clean": "rimraf dist",
    "test": "vitest run",
    "test:e2e": "pnpm build && vitest run tests/e2e",
    "test:validation": "pnpm build && vitest run tests/e2e/validation.test.ts",
    "test:validation:report": "npx tsx tests/e2e/generate-validation-report.ts cn",
    "test:validation:report:intl": "npx tsx tests/e2e/generate-validation-report.ts intl",
    "report:generate": "npx tsx tests/e2e/generate-report-standalone.ts cn",
    "report:generate:intl": "npx tsx tests/e2e/generate-report-standalone.ts intl"
  }
}