-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "structs-mcp-server",
"version": "0.1.0",
"description": "MCP server for Structs - provides AI agents with structured access to documentation, schemas, APIs, and real-time game state",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "node ./node_modules/typescript/bin/tsc",
"start": "node dist/server.js",
"dev": "node ./node_modules/typescript/bin/tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:validation": "NODE_OPTIONS=--experimental-vm-modules jest tests/validation.test.ts",
"test:uri": "NODE_OPTIONS=--experimental-vm-modules jest tests/uri.test.ts",
"test:resources": "NODE_OPTIONS=--experimental-vm-modules jest tests/resources.test.ts",
"test:integration": "node tests/integration/mcp-client-test.js",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"structs",
"game",
"api"
],
"author": "Structs Team",
"license": "Apache License, Version 2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/express": "^5.0.6",
"@types/pg": "^8.10.0",
"ajv": "^8.12.0",
"axios": "^1.6.0",
"chokidar": "^3.5.3",
"express": "^4.22.1",
"lru-cache": "^10.1.0",
"nats": "^2.10.0",
"pg": "^8.11.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}