-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1009 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1009 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
{
"name": "embark-claude-index",
"version": "2.0.0",
"description": "Fast code index for Unreal Engine projects — search types, members, files, assets, and grep across AngelScript, C++, and Blueprints via MCP tools",
"main": "src/service/index.js",
"type": "module",
"scripts": {
"start": "node src/cli.js start",
"validate": "node src/cli.js validate",
"status": "node src/cli.js status",
"setup": "node src/setup-gui.js",
"watcher": "node src/watcher/watcher-client.js",
"bridge": "node src/bridge/mcp-bridge.js",
"test": "node --test --test-timeout 30000 src/*.test.js src/watcher/*.test.js",
"stress-test": "node --test src/stress-test.js"
},
"keywords": [
"mcp",
"unreal",
"angelscript",
"claude",
"index"
],
"author": "EmbarkStudios",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"chokidar": "^4.0.0",
"express": "^4.21.0",
"undici": "^7.21.0"
}
}