@gmo-internet/conoha-vps-mcp 0.5.1 → 0.6.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/NOTICE +26 -20
- package/README.md +19 -5
- package/dist/index.js +15397 -391
- package/dist/ui/src/apps/ui/mcp-app.html +135 -0
- package/package.json +35 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gmo-internet/conoha-vps-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "日本語対応のConoHa VPS Model Context Protocol (MCP) サーバー",
|
|
5
5
|
"author": "GMO Internet",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,12 +41,16 @@
|
|
|
41
41
|
"registry": "https://registry.npmjs.org/"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
|
-
"build": "
|
|
44
|
+
"build": "vite build --config vite.config.server.ts && vite build",
|
|
45
|
+
"build:server": "vite build --config vite.config.server.ts",
|
|
46
|
+
"build:ui": "vite build",
|
|
45
47
|
"build:types": "tsc --emitDeclarationOnly",
|
|
46
48
|
"build:mcpb": "mcpb pack",
|
|
47
49
|
"start": "node dist/index.js",
|
|
48
50
|
"dev": "tsx src/index.ts",
|
|
49
|
-
"
|
|
51
|
+
"preview:ui": "vite --config vite.config.preview.ts",
|
|
52
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.ui.json",
|
|
53
|
+
"typecheck:ui": "tsc --noEmit -p tsconfig.ui.json",
|
|
50
54
|
"biome:ci": "biome ci .",
|
|
51
55
|
"biome:fix": "biome check --write .",
|
|
52
56
|
"test": "vitest run --coverage",
|
|
@@ -55,31 +59,44 @@
|
|
|
55
59
|
"docs:build": "typedoc",
|
|
56
60
|
"docs:watch": "typedoc --watch",
|
|
57
61
|
"docs:serve": "npx serve reports/docs",
|
|
58
|
-
"audit:ci": "npm audit --audit-level=high",
|
|
62
|
+
"audit:ci": "npm audit --audit-level=high --omit=dev",
|
|
59
63
|
"knip": "knip",
|
|
60
64
|
"depcruise": "depcruise src --config .dependency-cruiser.cjs",
|
|
61
65
|
"jscpd": "jscpd src/",
|
|
62
66
|
"mutation": "stryker run"
|
|
63
67
|
},
|
|
64
68
|
"dependencies": {
|
|
65
|
-
"@modelcontextprotocol/
|
|
66
|
-
"
|
|
69
|
+
"@modelcontextprotocol/ext-apps": "^1.7.4",
|
|
70
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
71
|
+
"react": "19.2.7",
|
|
72
|
+
"react-dom": "19.2.7",
|
|
73
|
+
"zod": "^4.4.3"
|
|
67
74
|
},
|
|
68
75
|
"devDependencies": {
|
|
69
76
|
"@anthropic-ai/mcpb": "2.1.2",
|
|
70
|
-
"@biomejs/biome": "2.
|
|
71
|
-
"@stryker-mutator/core": "9.6.
|
|
72
|
-
"@stryker-mutator/vitest-runner": "9.6.
|
|
77
|
+
"@biomejs/biome": "2.5.0",
|
|
78
|
+
"@stryker-mutator/core": "9.6.1",
|
|
79
|
+
"@stryker-mutator/vitest-runner": "9.6.1",
|
|
73
80
|
"@types/node": "^22.0.0",
|
|
74
|
-
"@
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
81
|
+
"@types/react": "19.2.17",
|
|
82
|
+
"@types/react-dom": "19.2.3",
|
|
83
|
+
"@vitejs/plugin-react": "6.0.2",
|
|
84
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
85
|
+
"dependency-cruiser": "17.4.3",
|
|
86
|
+
"jscpd": "5.0.11",
|
|
87
|
+
"knip": "6.17.1",
|
|
88
|
+
"tsx": "4.22.4",
|
|
89
|
+
"typedoc": "0.28.19",
|
|
90
|
+
"typescript": "6.0.3",
|
|
91
|
+
"vite": "8.0.16",
|
|
92
|
+
"vite-plugin-singlefile": "2.3.3",
|
|
93
|
+
"vite-plugin-svgr": "5.2.0",
|
|
94
|
+
"vitest": "4.1.9"
|
|
95
|
+
},
|
|
96
|
+
"overrides": {
|
|
97
|
+
"qs": "^6.15.2",
|
|
98
|
+
"@inquirer/prompts": "^8.5.2",
|
|
99
|
+
"js-yaml": "<=4.1.1"
|
|
83
100
|
},
|
|
84
101
|
"engines": {
|
|
85
102
|
"node": ">=22.0.0"
|