-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 864 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 864 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
{
"name": "ftc-mcp",
"version": "1.1.0",
"description": "MCP server providing FTC Robot Controller context for AI coding assistants",
"main": "build/index.js",
"bin": {
"ftc-mcp": "build/index.js"
},
"files": [
"build/"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": ["ftc", "mcp", "robotics", "first-tech-challenge", "pedro-pathing", "ftc-dashboard"],
"author": "Jack Lau",
"repository": {
"type": "git",
"url": "git+https://github.com/jackulau/ftcMCP.git"
},
"homepage": "https://github.com/jackulau/ftcMCP#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}