-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
382 lines (382 loc) · 13.3 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
{
"name": "neo3-visual-tracker",
"publisher": "ngd-seattle",
"displayName": "Neo N3 Visual DevTracker",
"description": "A Neo N3 blockchain explorer that is directly available within Visual Studio Code",
"version": "0.0.0",
"icon": "resources/neo-logo.png",
"galleryBanner": {
"color": "#242424",
"theme": "dark"
},
"author": "Neo Project",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/ngdseattle/neo3-visual-tracker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ngdseattle/neo3-visual-tracker.git"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "Trust is required to build, deploy and debug smart contracts"
}
},
"activationEvents": [
"onCommand:neo3-visual-devtracker.customizeServerList",
"onCommand:neo3-visual-devtracker.express.contractDeploy",
"onCommand:neo3-visual-devtracker.express.create",
"onCommand:neo3-visual-devtracker.express.createCheckpoint",
"onCommand:neo3-visual-devtracker.express.exploreStorage",
"onCommand:neo3-visual-devtracker.express.reset",
"onCommand:neo3-visual-devtracker.express.restoreCheckpoint",
"onCommand:neo3-visual-devtracker.express.run",
"onCommand:neo3-visual-devtracker.express.runAdvanced",
"onCommand:neo3-visual-devtracker.express.transfer",
"onCommand:neo3-visual-devtracker.express.walletCreate",
"onCommand:neo3-visual-devtracker.neo.contractDeploy",
"onCommand:neo3-visual-devtracker.neo.invokeContract",
"onCommand:neo3-visual-devtracker.neo.newContract",
"onCommand:neo3-visual-devtracker.neo.walletCreate",
"onCommand:neo3-visual-devtracker.tracker.openContract",
"onCommand:neo3-visual-devtracker.tracker.openTracker",
"onCommand:neo3-visual-devtracker.tracker.openWallet",
"onCustomEditor:neo3-visual-devtracker.express.neo-invoke-json",
"onView:neo3-visual-devtracker.views.blockchains",
"onView:neo3-visual-devtracker.views.quickStart",
"workspaceContains:**/*.nef",
"workspaceContains:**/*.avm",
"workspaceContains:**/*.neo-express",
"workspaceContains:**/*.neo-invoke.json",
"workspaceContains:**/*.neo-wallet.json"
],
"keywords": [
"Neo",
"Blockchain"
],
"main": "./dist/extension/index.js",
"contributes": {
"customEditors": [
{
"viewType": "neo3-visual-devtracker.neo.neo-invoke-json",
"displayName": "Neo Express Contract Invoke File Editor",
"selector": [
{
"filenamePattern": "*.neo-invoke.json"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "neo3-visual-devtracker.express.contractDeploy",
"title": "Deploy contract to Neo Express",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.create",
"title": "Create private blockchain",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.createCheckpoint",
"title": "Create checkpoint",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.customCommand",
"title": "Run custom Neo Express command",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.exploreStorage",
"title": "Explore contract storage",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.reset",
"title": "Reset blockchain",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.restoreCheckpoint",
"title": "Restore checkpoint",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.run",
"title": "Start blockchain",
"category": "Neo Express N3",
"icon": {
"light": "resources/light/play.svg",
"dark": "resources/dark/play.svg"
}
},
{
"command": "neo3-visual-devtracker.express.runAdvanced",
"title": "Start blockchain (with custom options)...",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.stop",
"title": "Stop blockchain",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.transfer",
"title": "Transfer assets",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.express.walletCreate",
"title": "Create wallet",
"category": "Neo Express N3"
},
{
"command": "neo3-visual-devtracker.neo.contractDeploy",
"title": "Deploy contract",
"category": "Neo N3"
},
{
"command": "neo3-visual-devtracker.neo.invokeContract",
"title": "Invoke contract",
"category": "Neo N3"
},
{
"command": "neo3-visual-devtracker.neo.newContract",
"title": "Create contract",
"category": "Neo N3"
},
{
"command": "neo3-visual-devtracker.neo.walletCreate",
"title": "Create wallet",
"category": "Neo N3"
},
{
"command": "neo3-visual-devtracker.tracker.openContract",
"title": "Show smart contract information",
"category": "Neo N3 Visual DevTracker"
},
{
"command": "neo3-visual-devtracker.tracker.openTracker",
"title": "Open Neo N3 Visual DevTracker",
"category": "Neo N3 Visual DevTracker",
"icon": {
"light": "resources/light/open.svg",
"dark": "resources/dark/open.svg"
}
},
{
"command": "neo3-visual-devtracker.tracker.openWallet",
"title": "Show wallet",
"category": "Neo N3 Visual DevTracker"
},
{
"command": "neo3-visual-devtracker.connect",
"title": "Connect to a Neo N3 blockchain",
"category": "Neo N3 Extension"
},
{
"command": "neo3-visual-devtracker.customizeServerList",
"title": "Customize blockchain list",
"category": "Neo N3 Extension"
},
{
"command": "neo3-visual-devtracker.disconnect",
"title": "Disconnect from current Neo blockchain",
"category": "Neo N3 Extension"
}
],
"menus": {
"explorer/context": [
{
"command": "neo3-visual-devtracker.express.contractDeploy",
"when": "isFileSystemResource && resourceExtname == .nef"
},
{
"command": "neo3-visual-devtracker.neo.contractDeploy",
"when": "isFileSystemResource && resourceExtname == .nef"
}
],
"view/item/context": [
{
"command": "neo3-visual-devtracker.express.contractDeploy",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.customCommand",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.createCheckpoint",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.exploreStorage",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.reset",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.restoreCheckpoint",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.run",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express",
"group": "inline"
},
{
"command": "neo3-visual-devtracker.express.run",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.runAdvanced",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.stop",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.transfer",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.express.walletCreate",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.neo.contractDeploy",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem != express"
},
{
"command": "neo3-visual-devtracker.neo.invokeContract",
"when": "view == neo3-visual-devtracker.views.blockchains && viewItem == express"
},
{
"command": "neo3-visual-devtracker.tracker.openTracker",
"when": "view == neo3-visual-devtracker.views.blockchains",
"group": "inline"
},
{
"command": "neo3-visual-devtracker.tracker.openTracker",
"when": "view == neo3-visual-devtracker.views.blockchains"
}
],
"view/title": [
{
"command": "neo3-visual-devtracker.customizeServerList",
"when": "view == neo3-visual-devtracker.views.blockchains"
},
{
"command": "neo3-visual-devtracker.express.create",
"when": "view == neo3-visual-devtracker.views.blockchains"
},
{
"command": "neo3-visual-devtracker.neo.newContract",
"when": "view == neo3-visual-devtracker.views.contracts"
},
{
"command": "neo3-visual-devtracker.neo.walletCreate",
"when": "view == neo3-visual-devtracker.views.wallets"
}
]
},
"views": {
"neo3-visual-devtracker-mainView": [
{
"id": "neo3-visual-devtracker.views.blockchains",
"name": "Blockchains"
},
{
"id": "neo3-visual-devtracker.views.wallets",
"name": "Wallets"
},
{
"id": "neo3-visual-devtracker.views.contracts",
"name": "Smart contracts"
},
{
"id": "neo3-visual-devtracker.views.quickStart",
"name": "Quick Start",
"type": "webview"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "neo3-visual-devtracker-mainView",
"title": "Neo N3 Visual DevTracker",
"icon": "resources/n3-logo.png"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile-prod && npm run bundle-nxp",
"bundle-nxp": "npm run bundle-nxp-download && npm run bundle-nxp-extract",
"bundle-nxp-download": "shx rm -rf deps/nxp && shx mkdir -p deps/nxp && nwget \"https://github.com/neo-project/neo-express/releases/download/3.5.20/Neo.Express.3.5.20.nupkg\" -O deps/nxp/nxp.nupkg",
"bundle-nxp-extract": "cd deps/nxp && extract-zip nxp.nupkg",
"compile": "npm run compile-ext && npm run compile-panel",
"compile-ext": "webpack --config src/extension/webpack.config.js --mode development",
"compile-panel": "webpack --config src/panel/webpack.config.js --mode development",
"compile-prod": "npm run compile-prod-ext && npm run compile-prod-panel",
"compile-prod-ext": "webpack --config src/extension/webpack.config.js --mode production",
"compile-prod-panel": "webpack --config src/panel/webpack.config.js --mode production",
"package": "npm run compile-prod && npm run bundle-nxp && vsce package",
"setversion": "gulp setversion",
"vscode-start": "npm install && npm run bundle-nxp && npm run watch",
"watch": "concurrently -r npm:watch-*",
"watch-ext": "webpack --config src/extension/webpack.config.js --mode development --watch --stats-error-details",
"watch-panel": "webpack --config src/panel/webpack.config.js --mode development --watch --stats-error-details"
},
"devDependencies": {
"@cityofzion/neon-core": "^5.0.0-next.12",
"@types/crypto-js": "^4.0.1",
"@types/glob": "^7.1.3",
"@types/gulp": "^4.0.7",
"@types/node": "^14.14.39",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/temp": "^0.9.0",
"@types/vscode": "^1.51.0",
"@types/which": "^2.0.0",
"bignumber.js": "^9.0.1",
"bitset": "^5.1.1",
"buffer": "^6.0.3",
"concurrently": "^6.0.2",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.0.0",
"extract-zip": "^2.0.1",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"jsonc-parser": "^3.0.0",
"nerdbank-gitversioning": "^3.4.244",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shx": "^0.3.3",
"stream-browserify": "^3.0.0",
"temp": "^0.9.4",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vsce": "^2.9.2",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"wget-improved": "^3.2.1",
"which": "^2.0.2"
}
}