-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.66 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 4.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "unreal-engine-mcp-server",
"version": "0.5.30",
"mcpName": "io.github.ChiR24/unreal-engine-mcp",
"description": "A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal Engine via native automation bridge. Built with TypeScript and designed for game development automation.",
"type": "module",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"unreal-engine-mcp-server": "dist/cli.js"
},
"files": [
"dist/**",
"server.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build:core": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:core",
"build:watch": "tsc -p tsconfig.json --watch",
"start": "node dist/cli.js",
"dev": "ts-node-esm src/cli.ts",
"lint": "echo \"Lint: typescript/javascript, C, C++, C#\" && eslint .",
"lint:fix": "eslint . --fix",
"lint:cpp": "echo \"Running C/C++ lint (cpplint)\" && (python -m cpplint --recursive plugins || echo 'cpplint not found; skipping C/C++ lint')",
"lint:c": "echo \"Running C lint (cpplint)\" && (python -m cpplint --recursive plugins || echo 'cpplint not found; skipping C lint')",
"lint:csharp": "echo \"Running C# lint (dotnet format)\" && (dotnet tool run dotnet-format --verify-no-changes || echo 'dotnet-format not available or formatting required; skipping C# lint')",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"prepare": "node -e \"const fs=require('fs');(fs.existsSync('dist')&&fs.existsSync('dist/cli.js')&&fs.existsSync('dist/index.js'))||require('child_process').execSync('npm run build',{stdio:'inherit'})\"",
"automation:sync": "node scripts/sync-mcp-plugin.js",
"clean:tmp": "node scripts/clean-tmp.js",
"test": "node tests/integration.mjs",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:all": "node tests/integration.mjs",
"test:smoke": "node --loader ts-node/esm scripts/smoke-test.ts",
"test:native-parity": "node tests/native-mcp-parity-audit.mjs",
"test:params": "npm run test:native-parity && node tests/parameter-combination-audit.mjs --static --strict --optional-strict",
"type-check": "tsc --noEmit",
"registry:generate": "node --loader ts-node/esm scripts/generate-canonical-registry.ts",
"registry:check": "node --loader ts-node/esm scripts/generate-canonical-registry.ts --check",
"manifest:check": "node --loader ts-node/esm scripts/generate-gateway-manifest.ts --check",
"normalization:check": "node --loader ts-node/esm scripts/generate-normalization-inventory.mjs --check",
"normalization:audit": "node --loader ts-node/esm scripts/audit-normalization-inventory.mjs",
"version:check": "vitest run tests/unit/version-consistency.test.ts",
"policy:generate": "node --loader ts-node/esm scripts/generate-console-command-policy.ts",
"policy:check": "node --loader ts-node/esm scripts/generate-console-command-policy.ts --check",
"migration:check": "vitest run tests/unit/migration tests/unit/mcp-primitives/profiles-fallback-migration-parity.test.ts tests/unit/docs/gateway-migration-doc-contract.test.ts",
"primitives:check": "vitest run tests/unit/mcp-primitives/resources-parity.test.ts tests/unit/mcp-primitives/prompts-completions-parity.test.ts tests/unit/mcp-primitives/session-subscription-parity.test.ts tests/unit/mcp-primitives/profiles-fallback-parity.test.ts tests/unit/mcp-primitives/parity-harness-selftest.test.ts tests/unit/server/primitive-startup.test.ts",
"security:check": "vitest run tests/unit/security tests/unit/adversarial",
"eval:check": "vitest run --config tests/eval/vitest.eval.config.ts",
"workflow:check": "vitest run tests/unit/workflow_ tests/unit/release-archive-excludes.test.ts"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"unreal",
"unreal-engine",
"ue5",
"remote-control",
"automation",
"game-development"
],
"author": "Unreal Engine MCP Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"ajv": "^8.17.1",
"dotenv": "^17.2.3",
"mcp-client-capabilities": "^0.0.14",
"ws": "^8.18.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@types/node": "^26.0.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "8.63.0",
"@typescript-eslint/parser": "8.63.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "9.39.5",
"eslint-plugin-n": "^18.2.2",
"js-yaml": "^5.2.1",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"vitest": "^4.0.16"
}
}