gopeak 2.1.0 → 2.2.1

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "gopeak",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
4
4
  "mcpName": "io.github.HaD0Yun/gopeak",
5
5
  "description": "GoPeak — The most comprehensive MCP server for Godot Engine. 95+ tools: scene management, GDScript LSP diagnostics, DAP debugger, screenshot capture, input injection, ClassDB introspection, CC0 asset library. AI-assisted game development with Claude, Cursor, Cline, OpenCode.",
6
6
  "type": "module",
7
7
  "main": "./build/index.js",
8
8
  "bin": {
9
- "gopeak": "./build/index.js",
10
- "godot-mcp": "./build/index.js"
9
+ "gopeak": "./build/cli.js",
10
+ "godot-mcp": "./build/cli.js"
11
11
  },
12
12
  "files": [
13
13
  "build",
@@ -15,11 +15,17 @@
15
15
  "LICENSE"
16
16
  ],
17
17
  "scripts": {
18
- "build": "tsc && node scripts/build.js",
18
+ "build": "tsc && node scripts/build-visualizer.js && node scripts/build.js",
19
+ "typecheck": "tsc --noEmit",
20
+ "test:smoke": "node scripts/smoke-test.mjs",
21
+ "test:integration": "node test-bridge.mjs",
22
+ "test:ci": "npm run test:smoke",
23
+ "ci": "npm run build && npm run typecheck && npm run test:ci",
19
24
  "prepare": "npm run build",
20
25
  "watch": "tsc --watch",
21
26
  "inspector": "npx @modelcontextprotocol/inspector build/index.js",
22
- "pack": "npm pack --dry-run"
27
+ "pack": "npm pack --dry-run",
28
+ "version:bump": "node scripts/bump-version.mjs"
23
29
  },
24
30
  "engines": {
25
31
  "node": ">=18"
@@ -27,10 +33,13 @@
27
33
  "dependencies": {
28
34
  "@modelcontextprotocol/sdk": "^1.27.0",
29
35
  "axios": "^1.7.9",
30
- "fs-extra": "^11.2.0"
36
+ "fs-extra": "^11.2.0",
37
+ "ws": "^8.18.0"
31
38
  },
32
39
  "devDependencies": {
33
40
  "@types/node": "^20.11.24",
41
+ "@types/ws": "^8.5.12",
42
+ "esbuild": "^0.24.2",
34
43
  "typescript": "^5.3.3"
35
44
  },
36
45
  "license": "MIT",