-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 897 Bytes
/
package.json
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": "geofs-mcp-server",
"version": "0.1.0",
"description": "Model Context Protocol server for GeoFS flight simulator",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"geofs",
"flight-simulator",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.11.0",
"@types/axios": "^0.14.4",
"@types/cors": "^2.8.17",
"axios": "^1.8.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.0",
"@types/ws": "^8.5.4",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}