-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 728 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 728 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
{
"name": "magicline-mcp-server",
"version": "1.0.0",
"description": "mcp server to comunicate with the magicline api",
"license": "MIT",
"author": "Luca Gerlich",
"type": "module",
"main": "index.ts",
"bin": {
"mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && cp src/openapi.json src/connectapi.json src/deviceapi.json src/webhooks.json build/ && chmod 755 build/index.js",
"update-openapi": "node scripts/fetch-openapi.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": ["build"],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.0.9",
"typescript": "^5.9.3"
}
}