-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mcp-server-esa",
"version": "1.1.0",
"description": "ESA MCP Server - Modular Alibaba Cloud ESA tools for Edge Routine, Pages, and Site management",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "commonjs",
"files": [
"dist",
"readme.md",
"LICENSE"
],
"bin": {
"mcp-server-esa": "./dist/index.js",
"mcp-server-esa-pages": "./dist/pages.js",
"mcp-server-esa-er": "./dist/er.js",
"mcp-server-esa-site": "./dist/site.js"
},
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"format": "prettier --write .",
"lint": "eslint .",
"test:mcp": "node scripts/test-mcp-pages.mjs"
},
"author": "",
"keywords": [
"mcp",
"esa",
"alibaba-cloud",
"edge-routine",
"pages",
"site",
"deploy"
],
"devDependencies": {
"@eslint/js": "^9.21.0",
"@rslib/core": "^0.5.5",
"@types/adm-zip": "^0.5.7",
"@types/lodash": "^4.17.16",
"@types/node": "^22.8.1",
"@types/node-fetch": "^2.6.12",
"@types/semver": "^7.5.8",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"prettier": "^3.5.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aliyun/mcp-server-esa.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@alicloud/esa20240910": "^2.25.0",
"@alicloud/openapi-client": "^0.4.13",
"@alicloud/tea-util": "^1.4.10",
"@modelcontextprotocol/sdk": "^1.13.2",
"adm-zip": "^0.5.16",
"form-data": "^4.0.2",
"haikunator": "^2.1.2",
"node-fetch": "^2.7.0",
"semver": "^7.7.1",
"zod": "^3.24.2"
}
}