-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "motionmcp",
"version": "2.8.0",
"description": "MCP server for Motion API integration - manage projects, tasks, and workspaces from LLMs",
"main": "dist/mcp-server.js",
"bin": {
"motionmcp": "dist/mcp-server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"motion",
"api",
"task-management",
"project-management",
"llm",
"ai"
],
"author": "Devon Hillard devon@digitalsanctuary.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/devondragon/MotionMCP.git"
},
"homepage": "https://github.com/devondragon/MotionMCP",
"bugs": {
"url": "https://github.com/devondragon/MotionMCP/issues"
},
"type": "commonjs",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"agents": "^0.5.1",
"ajv": "^8.17.1",
"axios": "^1.9.0",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250214.0",
"@types/node": "^24.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^4.0.18",
"wrangler": "^4.0.0"
},
"scripts": {
"generate:types": "npx tsx scripts/generate-types.ts",
"build": "npm run generate:types && tsc",
"mcp": "node dist/mcp-server.js",
"mcp:dev": "ts-node src/mcp-server.ts",
"watch": "tsc --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:types": "tsc --noEmit -p tsconfig.tests.json",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"worker:dev": "wrangler dev",
"worker:deploy": "wrangler deploy",
"worker:type-check": "tsc --noEmit -p tsconfig.worker.json",
"prepublishOnly": "npm run type-check && npm run build"
}
}