-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 918 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 918 Bytes
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
{
"name": "unreal-mcp",
"version": "0.1.0",
"description": "The most comprehensive MCP server for Unreal Engine — 120+ tools across 16 subsystems",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"unreal-mcp": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx watch src/bin.ts",
"build": "tsc",
"start": "node dist/bin.js",
"test": "vitest",
"lint": "biome check src/",
"fmt": "biome format --write src/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"unreal-remote-execution": "^1.0.0",
"ws": "^8.18.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^22.15.0",
"@types/ws": "^8.5.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}