{
  "name": "@tushare/mcp",
  "version": "0.2.1",
  "description": "Tushare MCP 服务 - 基于 @tushare/sdk 的 Model Context Protocol 实现",
  "keywords": [
    "tushare",
    "mcp",
    "model-context-protocol",
    "ai-tools",
    "finance-api"
  ],
  "author": "kshern@live.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/kshern/tushare-ts.git",
    "directory": "packages/mcp"
  },
  "homepage": "https://github.com/kshern/tushare-ts#readme",
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "tushare-mcp": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./cli": {
      "types": "./dist/cli.d.ts",
      "import": "./dist/cli.js"
    }
  },
  "files": [
    "dist",
    "assets"
  ],
  "scripts": {
    "build": "pnpm run clean && tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.build.json --noEmit",
    "clean": "rimraf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "dev": "tsx src/cli.ts --stdio",
    "dev:inspect": "tsx src/cli.ts --stdio --verbose",
    "verify": "tsx scripts/verify-search.ts",
    "start": "node dist/cli.js"
  },
  "dependencies": {
    "@tushare/core": "npm:@tushare/core@0.1.3",
    "@tushare/sdk": "npm:@tushare/sdk@^1.2.0",
    "@modelcontextprotocol/sdk": "^1.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.5.4",
    "rimraf": "^6.0.1",
    "vitest": "^2.0.5",
    "tsx": "^4.0.0"
  },
  "engines": {
    "node": ">=18"
  }
}
