@jeff-stapleton/digitalocean-mcp-server 1.0.2
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../../src/main.ts"],"names":[],"mappings":""}
|
package/dist/main.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"5.9.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jeff-stapleton/digitalocean-mcp-server",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "MCP server for DigitalOcean integration",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"mcp-server",
|
|
10
|
+
"digitalocean"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"digitalocean-mcp-server": "./dist/main.js"
|
|
20
|
+
},
|
|
21
|
+
"nx": {
|
|
22
|
+
"targets": {
|
|
23
|
+
"build": {
|
|
24
|
+
"executor": "@nx/esbuild:esbuild",
|
|
25
|
+
"outputs": [
|
|
26
|
+
"{options.outputPath}"
|
|
27
|
+
],
|
|
28
|
+
"defaultConfiguration": "production",
|
|
29
|
+
"options": {
|
|
30
|
+
"platform": "node",
|
|
31
|
+
"outputPath": "apps/digitalocean-mcp-server/dist",
|
|
32
|
+
"format": [
|
|
33
|
+
"esm"
|
|
34
|
+
],
|
|
35
|
+
"bundle": true,
|
|
36
|
+
"main": "apps/digitalocean-mcp-server/src/main.ts",
|
|
37
|
+
"tsConfig": "apps/digitalocean-mcp-server/tsconfig.app.json",
|
|
38
|
+
"assets": [
|
|
39
|
+
"apps/digitalocean-mcp-server/src/assets"
|
|
40
|
+
],
|
|
41
|
+
"esbuildOptions": {
|
|
42
|
+
"sourcemap": true,
|
|
43
|
+
"outExtension": {
|
|
44
|
+
".js": ".js"
|
|
45
|
+
},
|
|
46
|
+
"banner": {
|
|
47
|
+
"js": "#!/usr/bin/env node"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"configurations": {
|
|
52
|
+
"development": {},
|
|
53
|
+
"production": {
|
|
54
|
+
"esbuildOptions": {
|
|
55
|
+
"sourcemap": false,
|
|
56
|
+
"outExtension": {
|
|
57
|
+
".js": ".js"
|
|
58
|
+
},
|
|
59
|
+
"banner": {
|
|
60
|
+
"js": "#!/usr/bin/env node"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"nx-release-publish": {
|
|
67
|
+
"executor": "@nx/js:release-publish",
|
|
68
|
+
"options": {
|
|
69
|
+
"packageRoot": "apps/digitalocean-mcp-server"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"prune-lockfile": {
|
|
73
|
+
"dependsOn": [
|
|
74
|
+
"build"
|
|
75
|
+
],
|
|
76
|
+
"cache": true,
|
|
77
|
+
"executor": "@nx/js:prune-lockfile",
|
|
78
|
+
"outputs": [
|
|
79
|
+
"{workspaceRoot}/apps/digitalocean-mcp-server/dist/package.json",
|
|
80
|
+
"{workspaceRoot}/apps/digitalocean-mcp-server/dist/package-lock.json"
|
|
81
|
+
],
|
|
82
|
+
"options": {
|
|
83
|
+
"buildTarget": "build"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"copy-workspace-modules": {
|
|
87
|
+
"dependsOn": [
|
|
88
|
+
"build"
|
|
89
|
+
],
|
|
90
|
+
"cache": true,
|
|
91
|
+
"outputs": [
|
|
92
|
+
"{workspaceRoot}/apps/digitalocean-mcp-server/dist/workspace_modules"
|
|
93
|
+
],
|
|
94
|
+
"executor": "@nx/js:copy-workspace-modules",
|
|
95
|
+
"options": {
|
|
96
|
+
"buildTarget": "build"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"prune": {
|
|
100
|
+
"dependsOn": [
|
|
101
|
+
"prune-lockfile",
|
|
102
|
+
"copy-workspace-modules"
|
|
103
|
+
],
|
|
104
|
+
"executor": "nx:noop"
|
|
105
|
+
},
|
|
106
|
+
"serve": {
|
|
107
|
+
"continuous": true,
|
|
108
|
+
"executor": "@nx/js:node",
|
|
109
|
+
"defaultConfiguration": "development",
|
|
110
|
+
"dependsOn": [
|
|
111
|
+
"build"
|
|
112
|
+
],
|
|
113
|
+
"options": {
|
|
114
|
+
"buildTarget": "@jeff-stapleton/digitalocean-mcp-server:build",
|
|
115
|
+
"runBuildTargetDependencies": false
|
|
116
|
+
},
|
|
117
|
+
"configurations": {
|
|
118
|
+
"development": {
|
|
119
|
+
"buildTarget": "@jeff-stapleton/digitalocean-mcp-server:build:development"
|
|
120
|
+
},
|
|
121
|
+
"production": {
|
|
122
|
+
"buildTarget": "@jeff-stapleton/digitalocean-mcp-server:build:production"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"dependencies": {}
|
|
129
|
+
}
|