-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathextension.json
More file actions
118 lines (118 loc) · 2.43 KB
/
Copy pathextension.json
File metadata and controls
118 lines (118 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "easyeda-copilot",
"uuid": "64651de62a944308a56e3b42eb2cb248",
"displayName": "EasyEda Copilot",
"description": "AI-powered assistant for EasyEDA — generate schematics from natural language, browse LCSC components, design PCBs with custom DRC configurations, and get interactive circuit design help.",
"version": "1.1.7",
"publisher": "biosshot",
"engines": {
"eda": "^3.2.149"
},
"license": "MIT License",
"repository": {
"type": "github",
"url": "https://github.com/biosshot/easyeda-copilot"
},
"categories": "Other",
"keywords": [
"AI",
"Schematic",
"PCB",
"MCP"
],
"images": {
"logo": "./images/logo.png",
"banner": "./images/banner.png"
},
"homepage": "https://github.com/biosshot/easyeda-copilot",
"bugs": "https://github.com/biosshot/easyeda-copilot/issues",
"entry": "./dist/index",
"activationEvents": {},
"dependentExtensions": {},
"headerMenus": {
"sch": [
{
"id": "Copilot",
"title": "Copilot",
"menuItems": [
{
"id": "Interface",
"title": "Interface (Legacy)",
"registerFn": "openInterface"
},
{
"id": "Reused",
"title": "Reused blocks",
"registerFn": "openReused"
},
{
"id": "MCP",
"title": "MCP",
"registerFn": "openMcp"
},
{
"id": "Export",
"title": "Export",
"menuItems": [
{
"id": "ExportAsmCircuit",
"title": "Export assembly circuit",
"registerFn": "exportAsmCircuit"
}
]
},
{
"id": "Import",
"title": "Import",
"menuItems": [
{
"id": "importAsmCircuit",
"title": "Import assembly circuit",
"registerFn": "importAsmCircuit"
},
{
"id": "importAsmBoard",
"title": "Import assembly board",
"registerFn": "importAsmBoard"
}
]
},
{
"id": "About",
"title": "About...",
"registerFn": "about"
}
]
}
],
"pcb": [
{
"id": "Copilot",
"title": "Copilot",
"menuItems": [
{
"id": "MCP",
"title": "MCP",
"registerFn": "openMcp"
},
{
"id": "Import",
"title": "Import",
"menuItems": [
{
"id": "importAsmBoard",
"title": "Import assembly board",
"registerFn": "importAsmBoard"
}
]
},
{
"id": "About",
"title": "About...",
"registerFn": "about"
}
]
}
]
}
}