package.json•641 B
{
"name": "jiandaoyun-mcp-server",
"version": "1.0.1",
"description": "MCP server for JianDaoYun form data submission",
"main": "build/index.js",
"type": "module",
"bin": {
"jiandaoyun-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx watch src/index.ts"
},
"files": [
"build/**/*",
"README.md",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.2",
"dotenv": "^17.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}