-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.66 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
{
"name": "easyeda-agent-mcp-server",
"version": "1.5.0",
"description": "Bug-fix fork of the EasyEDA Pro MCP bridge. Resolves silent BOM wipes, dead copper to SMD pads and five-minute netlist hangs.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sheares/easyeda-mcp-fix.git"
},
"homepage": "https://github.com/sheares/easyeda-mcp-fix#readme",
"bugs": "https://github.com/sheares/easyeda-mcp-fix/issues",
"scripts": {
"compile": "rimraf ./dist/ && ts-node ./config/esbuild.prod.ts",
"build": "npm run compile && ts-node ./build/packaged.ts",
"start": "node dist/mcp-server/index.js",
"typecheck": "npm run typecheck:mcp && npm run typecheck:extension",
"typecheck:mcp": "tsc --noEmit",
"typecheck:extension": "tsc -p tsconfig.extension.json",
"test": "node --require ts-node/register --test tests/roundtrip.test.ts tests/geometry.test.ts tests/symbol-editor.test.ts tests/schematic-reader-flip.test.ts tests/schematic-writer.test.ts tests/pcb-params.test.ts tests/csv-parse.test.ts tests/component-match.test.ts tests/sch-netlist-parse.test.ts tests/auth-path-validator.test.ts tests/request-id.test.ts tests/request-queue.test.ts tests/bridge-daemon.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"ws": "^8.18.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@jlceda/pro-api-types": "^0.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.4",
"@types/ws": "^8.5.14",
"esbuild": "^0.24.2",
"fs-extra": "^11.3.0",
"ignore": "^7.0.3",
"jszip": "^3.10.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.5.0"
}
}