-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "uemcp",
"version": "3.8.0",
"description": "Unreal Engine Model Context Protocol - AI Assistant Integration",
"keywords": [
"unreal-engine",
"mcp",
"model-context-protocol",
"ai-assistant",
"claude",
"game-development"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atomantic/UEMCP.git"
},
"scripts": {
"test": "node test-e2e.js",
"test:unit": "cd server && npm run test",
"test:integration": "node tests/integration/test-mcp-integration.js",
"test:e2e": "COVERAGE=false node test-e2e.js",
"test:e2e:coverage": "COVERAGE=true node test-e2e.js",
"test:verbose": "VERBOSE=true node test-e2e.js",
"test:ci": "COVERAGE=true node test-e2e.js",
"setup": "./setup.sh",
"build": "cd server && npm run build",
"dev": "cd server && npm run dev",
"lint": "cd server && npm run lint",
"typecheck": "cd server && npm run typecheck"
},
"engines": {
"node": ">=20.19.0"
},
"devDependencies": {},
"dependencies": {}
}