deploy-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/LICENSE +55 -0
- package/README.md +499 -0
- package/SECURITY.md +61 -0
- package/dist/chunk-QRZL43CY.js +297 -0
- package/dist/index.js +95 -0
- package/dist/worker.js +1212 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "deploy-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Universal deployment tracker for AI assistants",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"deployment",
|
|
8
|
+
"vercel",
|
|
9
|
+
"ai",
|
|
10
|
+
"claude",
|
|
11
|
+
"deployment-tracking"
|
|
12
|
+
],
|
|
13
|
+
"author": "Alex Potapenko <alex.potapenko.dev@gmail.com>",
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
|
+
"homepage": "https://github.com/alexpota/deploy-mcp#readme",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/alexpota/deploy-mcp.git"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/alexpota/deploy-mcp/issues"
|
|
22
|
+
},
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "./dist/index.js",
|
|
25
|
+
"bin": {
|
|
26
|
+
"deploy-mcp": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE",
|
|
32
|
+
"CHANGELOG.md",
|
|
33
|
+
"SECURITY.md"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "tsx watch src/index.ts",
|
|
37
|
+
"dev:worker": "wrangler dev",
|
|
38
|
+
"build": "tsup src/index.ts src/worker.ts --format esm --platform node --target node22",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"lint": "eslint src --ext .ts",
|
|
41
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
42
|
+
"type-check": "tsc --noEmit",
|
|
43
|
+
"format": "prettier --write src/**/*.ts",
|
|
44
|
+
"format:check": "prettier --check src/**/*.ts",
|
|
45
|
+
"clean": "rm -rf dist",
|
|
46
|
+
"deploy": "npm run build && npx wrangler deploy --env=production",
|
|
47
|
+
"prepare": "husky",
|
|
48
|
+
"prepublishOnly": "npm run clean && npm run build && npm run type-check && npm run lint && npm test"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.11.2",
|
|
52
|
+
"zod": "^3.24.1"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@cloudflare/workers-types": "^4.20250109.0",
|
|
56
|
+
"@types/node": "^22.10.5",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
58
|
+
"@typescript-eslint/parser": "^8.38.0",
|
|
59
|
+
"eslint": "^9.32.0",
|
|
60
|
+
"eslint-config-prettier": "^10.1.8",
|
|
61
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
62
|
+
"husky": "^9.1.7",
|
|
63
|
+
"lint-staged": "^16.1.4",
|
|
64
|
+
"prettier": "^3.6.2",
|
|
65
|
+
"tsup": "^8.3.5",
|
|
66
|
+
"tsx": "^4.19.2",
|
|
67
|
+
"typescript": "^5.7.3",
|
|
68
|
+
"vitest": "^2.1.8",
|
|
69
|
+
"wrangler": "^4.27.0"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=22.0.0"
|
|
73
|
+
},
|
|
74
|
+
"lint-staged": {
|
|
75
|
+
"src/**/*.ts": [
|
|
76
|
+
"eslint --fix",
|
|
77
|
+
"prettier --write"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
}
|