-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathextension.json
More file actions
105 lines (105 loc) · 1.97 KB
/
extension.json
File metadata and controls
105 lines (105 loc) · 1.97 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
{
"name": "easyeda-copilot",
"uuid": "d4e8704645c241dcadfa57ef58b7ed33",
"displayName": "EasyEda Copilot",
"description": "AI-powered assistant for EasyEDA & JLCEDA — generate schematics from natural language, export BOMs (GOST), browse LCSC components, and get interactive circuit design help.",
"version": "1.1.3",
"publisher": "echosystem",
"engines": {
"eda": "^2.2.45"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/biosshot/easyeda-copilot"
},
"categories": [
"Other",
"AI",
"Tools"
],
"keywords": [
"AI",
"EDA",
"EasyEDA",
"circuit",
"LCSC"
],
"images": {
"logo": "./images/logo.png"
},
"homepage": "https://echosystem.ru/",
"bugs": "https://echosystem.ru/#contact",
"entry": "./dist/index",
"dependentExtensions": [],
"headerMenus": {
"sch": [
{
"id": "Copilot",
"title": "Copilot",
"menuItems": [
{
"id": "Interface",
"title": "Interface",
"registerFn": "openInterface"
},
{
"id": "Reused",
"title": "Reused blocks",
"registerFn": "openReused"
},
{
"id": "MCP",
"title": "MCP",
"registerFn": "openMcp"
},
{
"id": "Export",
"title": "Export",
"menuItems": [
{
"id": "ExportAsmCircuit",
"title": "Export asm circuit",
"registerFn": "exportAsmCircuit"
}
]
},
{
"id": "Import",
"title": "Import",
"menuItems": [
{
"id": "importAsmCircuit",
"title": "Import asm circuit",
"registerFn": "importAsmCircuit"
}
]
},
{
"id": "About",
"title": "About...",
"registerFn": "about"
}
]
}
],
"pcb": [
{
"id": "Copilot",
"title": "Copilot",
"menuItems": [
{
"id": "MCP",
"title": "MCP",
"registerFn": "openMcp"
},
{
"id": "About",
"title": "About...",
"registerFn": "about"
}
]
}
]
}
}