-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
193 lines (193 loc) · 4.75 KB
/
package.json
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "fabric-debugger",
"publisher": "fabric-debugger",
"version": "1.0.0",
"description": "A VS code extension and toolbox to debugging a chaincode. The extension once installed can be used by developers of chaincode to run and debug, understand how it behaves.",
"engines": {
"vscode": "^1.91.0"
},
"main": "./extension.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger-labs/fabric-debugger"
},
"keywords": [
"vscode",
"extension",
"hyperledger",
"fabric",
"blockchain",
"debugger",
"smart contracts",
"network",
"go",
"java"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyperledger-labs/fabric-debugger"
},
"homepage": "https://github.com/hyperledger-labs/fabric-debugger#readme",
"categories": [
"Other"
],
"activationEvents": [
"onView:hyperledger-fabric"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "hyperledger-fabric",
"title": "Hyperledger Fabric",
"icon": "media/white-star.png"
}
]
},
"configuration": {
"type": "object",
"properties": {
"myExtension.destinationPath": {
"type": "string",
"default": "",
"description": "Specify the destination path for the extension."
}
}
},
"views": {
"hyperledger-fabric": [
{
"id": "fabric-network",
"name": "Fabric Networks"
},
{
"id": "network-desc",
"name": "Network-Descriptions"
},
{
"id": "wallets",
"name": "Wallets"
},
{
"id": "start-local-network",
"name": "Start Local Networks"
}
]
},
"menus": {
"commandPalette": [
{
"command": "extension.extractFunctions",
"when": "editorTextFocus",
"group": "navigation"
}
],
"editor/title": [
{
"command": "extension.extractFunctions",
"when": "resourceLangId == go",
"group": "navigation"
}
],
"view/title": [
{
"command": "fabric-network.uploadNetwork",
"when": "view == fabric-network",
"group": "navigation"
},
{
"command": "wallets.uploadWallet",
"when": "view == wallets",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "fabric-network.deleteNetwork",
"when": "view == fabric-network",
"group": "inline"
},
{
"command": "fabric-network.switchNetwork",
"title": "switch to this network",
"when": "view == fabric-network && viewItem == inactiveNetwork",
"group": "inline"
},
{
"command": "wallets.switchWallet",
"when": "view == wallets && viewItem == organization",
"group": "inline"
},
{
"command": "fabric-network.queryBlocks",
"when": "view == fabric-network",
"group": "inline"
}
]
},
"commands": [
{
"command": "extension.extractFunctions",
"title": "Debug-Chaincode ▶"
},
{
"command": "fabric-network.start",
"title": "Connection profile form",
"category": "Connection Profile",
"icon": "$(folder)"
},
{
"command": "fabric-network.openFilePicker",
"title": "Upload File",
"category": "Connection Profile",
"icon": "$(new-file)"
},
{
"command": "fabric-network.switchNetwork",
"title": "Switch Network",
"icon": "$(play)"
},
{
"command": "fabric-network.deleteNetwork",
"title": "Delete Network",
"category": "Fabric Network",
"icon": "$(trash)"
},
{
"command": "wallets.uploadWallet",
"title": "Upload wallet",
"category": "Wallets",
"icon": "$(new-file)"
},
{
"command": "wallets.switchWallet",
"title": "Switch Wallet",
"category": "Wallets",
"icon": "$(play)"
},
{
"command": "wallets.deleteWallet",
"title": "Delete Wallet",
"icon": "$(trash)"
},
{
"command": "fabric-network.queryBlocks",
"title": "Query Blocks",
"icon": "$(search)"
}
]
},
"dependencies": {
"@hyperledger/fabric-gateway": "^1.7.0",
"fabric-network": "^2.2.20",
"js-yaml": "^4.1.0",
"simple-git": "^3.27.0"
},
"publish": {
"registry": "https://npm.pkg.github.com"
}
}