package.json•740 B
{
"name": "mcp-test-project",
"version": "1.0.0",
"description": "MCP测试项目 - 用于测试resources、tools、prompts等机制",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-test-project": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "node dist/test-client.js",
"clean": "rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"test",
"sdk"
],
"author": "MCP Test Project",
"license": "MIT"
}