-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
738 lines (738 loc) · 24.2 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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
{
"publisher": "appland",
"name": "appmap",
"displayName": "AppMap",
"description": "Free AI Software Architect + Runtime Diagrams",
"version": "0.122.0",
"repository": {
"type": "git",
"url": "https://github.com/getappmap/vscode-appland"
},
"qna": "https://appmap.io/docs/faq.html",
"engines": {
"vscode": "^1.61.0"
},
"agents": {
"ruby": ">=0.60.0"
},
"activationEvents": [
"onStartupFinished"
],
"icon": "images/logo.png",
"license": "MIT",
"main": "./out/extension.js",
"categories": [
"Visualization",
"Machine Learning",
"Programming Languages",
"Snippets",
"Linters",
"Debuggers"
],
"keywords": [
"ai",
"anthropic",
"architecture",
"autocomplete",
"claude",
"code analysis",
"code completion",
"code explanation",
"code recommendation",
"coding assistant",
"dependency",
"diagram",
"diff",
"documentation",
"gpt",
"chatgpt",
"java",
"javascript",
"llm",
"map",
"mistral",
"mixtral",
"monitoring",
"node",
"node.js",
"observability",
"ollama",
"openai",
"python",
"refactor",
"ruby",
"security",
"snippets",
"software design",
"technical debt",
"testing",
"tracing",
"typescript",
"uml",
"visualization"
],
"contributes": {
"customEditors": [
{
"viewType": "appmap.views.appMapFile",
"displayName": "AppMap file",
"selector": [
{
"filenamePattern": "*.appmap.json"
},
{
"filenamePattern": "*.diff.sequence.json"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "appmap.getAppmapState",
"title": "AppMap: Copy Current AppMap State to Clipboard"
},
{
"command": "appmap.setAppmapState",
"title": "AppMap: Set AppMap State From Serialized String"
},
{
"command": "appmap.findByName",
"title": "AppMap: Find an AppMap by Name",
"icon": "$(search-view-icon)"
},
{
"command": "appmap.applyFilter",
"title": "AppMap: Filter All AppMaps by Name",
"icon": "$(extensions-filter)"
},
{
"command": "appmap.openInstallGuide",
"title": "AppMap: Open Data Recording Guide",
"icon": "$(book)"
},
{
"command": "appmap.view.focusAppMap",
"title": "AppMap: Open AppMaps View"
},
{
"command": "appmap.startRemoteRecording",
"title": "AppMap: Start a Remote Recording",
"icon": "images/record_start.svg"
},
{
"command": "appmap.getRemoteRecordingStatus",
"title": "AppMap: Get Remote Recording Status"
},
{
"command": "appmap.stopRemoteRecording",
"title": "AppMap: Stop the Remote Recording",
"icon": "images/record_stop.svg"
},
{
"command": "appmap.stopCurrentRemoteRecording",
"title": "AppMap: Stop the Active Remote Recording",
"icon": "images/record_stop.svg",
"when": "appmap.recordingIsRunning"
},
{
"command": "appmap.resetUsageState",
"title": "AppMap: Reset Usage State"
},
{
"command": "appmap.inspectCodeObject",
"title": "AppMap: Inspect Code Object"
},
{
"command": "appmap.deleteAllAppMaps",
"title": "AppMap: Delete All AppMaps"
},
{
"command": "appmap.openCodeObjectInAppMap",
"title": "AppMap: Open Code Object in AppMap"
},
{
"command": "appmap.touchOutOfDateTestFiles",
"title": "AppMap: Touch Out-of-Date Test Files"
},
{
"command": "appmap.copyOutOfDateTestsToClipboard",
"title": "AppMap: Copy Out-of-Date Tests to Clipboard"
},
{
"command": "appmap.context.openInFileExplorer",
"title": "AppMap View: Open in File Explorer"
},
{
"command": "appmap.context.openAsJson",
"title": "AppMap View: Open as JSON",
"icon": "$(bracket)"
},
{
"command": "appmap.context.deleteAppMap",
"title": "AppMap View: Delete AppMap",
"icon": "$(trash)"
},
{
"command": "appmap.context.rename",
"title": "AppMap View: Rename AppMap"
},
{
"command": "appmap.context.saveToCollection",
"title": "AppMap View: Save To Collection"
},
{
"command": "appmap.context.compareSequenceDiagrams",
"title": "AppMap View: Compare Sequence Diagrams"
},
{
"command": "appmap.context.inspectCodeObject",
"title": "AppMap View: Inspect Code Object"
},
{
"command": "appmap.context.deleteAppMaps",
"title": "AppMap View: Delete AppMaps"
},
{
"command": "appmap.generateOpenApi",
"title": "AppMap: Generate OpenAPI"
},
{
"command": "appmap.sequenceDiagram",
"title": "AppMap: Generate Sequence Diagram"
},
{
"command": "appmap.compareSequenceDiagrams",
"title": "AppMap: Compare Sequence Diagrams"
},
{
"command": "appmap.explain",
"title": "AppMap: Ask Navie AI"
},
{
"command": "appmap.rpc.restart",
"title": "AppMap: Restart Navie"
},
{
"command": "appmap.login",
"title": "AppMap: Login"
},
{
"command": "appmap.logout",
"title": "AppMap: Logout"
},
{
"command": "appmap.enterLicenseKey",
"title": "AppMap: Enter License Key"
},
{
"command": "appmap.updateAppMapTestConfig",
"title": "AppMap: Add AppMap Test Configuration"
},
{
"command": "appmap.updateAppMapLaunchConfig",
"title": "AppMap: Add AppMap Launch Configuration"
},
{
"command": "appmap.downloadLatestJavaJar",
"title": "AppMap: Update Java Jar"
},
{
"command": "appmap.openAIApiKey.set",
"title": "AppMap: Set OpenAI API Key"
},
{
"command": "appmap.openAIApiKey.status",
"title": "AppMap: Check OpenAI API Key Status"
},
{
"command": "appmap.editor.title.addToContext",
"title": "AppMap: Add File To Context"
},
{
"command": "appmap.explorer.addToContext",
"title": "AppMap: Add Files To Context"
},
{
"command": "appmap.addToContext",
"title": "AppMap: Add Files To Context"
}
],
"configuration": {
"title": "AppMap",
"properties": {
"appMap.applandUrl": {
"type": "string",
"default": "https://getappmap.com",
"description": "URL of AppMap"
},
"appMap.apiUrl": {
"type": "string",
"default": "https://api.getappmap.com",
"description": "URL of the AppMap API"
},
"appMap.viewConfiguration": {
"type": "string",
"description": "Default state of the AppMap view (obtain with AppMap: Copy Current State to Clipboard)"
},
"appMap.defaultDiagramView": {
"type": "string",
"description": "Default view on which to open the AppMap: viewComponent, viewSequence, or viewFlow",
"default": "viewSequence"
},
"appMap.inspectEnabled": {
"type": "boolean",
"description": "Enable detailed inspection of AppMap code objects (preview)"
},
"appMap.plantUmlJarPath": {
"type": "string",
"description": "Location of Plant UML JAR (required to generate sequence diagrams) (preview)"
},
"appMap.commandLineToolsPath": {
"type": "string",
"description": "Location of AppMap command line tools (used for extension development only)"
},
"appMap.commandLineVerbose": {
"type": "boolean",
"description": "Enable verbose output from AppMap command line tools"
},
"appMap.commandLineEnvironment": {
"type": "object",
"description": "Environment variables to pass to AppMap command line tools. NOTE: Requires a restart to take effect.",
"additionalProperties": {
"type": "string"
}
},
"appMap.indexOptions": {
"type": "string",
"description": "Options to pass to the appmap index command"
},
"appMap.navie.useVSCodeLM": {
"type": "boolean",
"description": "Use GitHub Copilot as Navie backend if available.\nRequires a recent VSCode version and GitHub Copilot extension.",
"default": true
},
"appMap.navie.rpcPort": {
"type": "number",
"description": "Port number to pass to the Navie UI (used for extension development and debugging only)"
},
"appMap.navie.contextTokenLimit": {
"type": "number",
"default": 8000,
"description": "Default size of the context to send to Navie AI"
},
"appMap.scannerEnabled": {
"type": "boolean",
"default": false,
"description": "Enable AppMap scanner"
},
"appMap.maxPinnedFileSizeKB": {
"type": "number",
"default": 20,
"description": "Maximum size of a file (in KB) that can be pinned to the Navie context"
},
"appMap.useAnimation": {
"type": "boolean",
"default": true,
"description": "Use animations"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "appmap",
"title": "AppMap",
"icon": "images/logo.svg"
}
]
},
"viewsWelcome": [
{
"view": "appmap.views.navie",
"contents": "AppMap is initializing...",
"when": "!appmap.initialized"
},
{
"view": "appmap.views.navie",
"contents": "Ask Navie a question about your application to get started.\n[New Navie Chat](command:appmap.explain)\nNavie uses AppMap data to improve the accuracy of Generative AI models. Navie searches through your locally stored AppMap data to identify the application behavior related to your question.",
"when": "appmap.initialized"
},
{
"view": "appmap.views.appmaps",
"contents": "AppMap is initializing...",
"when": "!appmap.initialized"
},
{
"view": "appmap.views.appmaps",
"contents": "Creating AppMap data for the areas of your application that interest you helps Navie answer very specific questions.\n[Create AppMap Data](command:appmap.openInstallGuide)\n",
"when": "appmap.initialized"
},
{
"view": "appmap.views.appmaps",
"contents": "Filter matched 0 results.\n[Apply a new filter](command:appmap.applyFilter)",
"when": "appmap.initialized && appmap.hasData && appmap.numResults == 0"
},
{
"view": "appmap.views.codeObjects",
"contents": "AppMap is initializing...",
"when": "!appmap.initialized"
},
{
"view": "appmap.views.findings",
"contents": "AppMap is initializing...",
"when": "!appmap.initialized"
},
{
"view": "appmap.views.documentation",
"contents": "AppMap is initializing...",
"when": "!appmap.initialized"
}
],
"views": {
"appmap": [
{
"id": "appmap.views.signIn",
"name": "Sign In",
"visibility": "visible",
"type": "webview",
"when": "appMap.showSignIn"
},
{
"id": "appmap.views.navie",
"name": "Navie",
"visibility": "visible",
"when": "!appMap.showSignIn"
},
{
"id": "appmap.views.appmaps",
"name": "AppMap Data",
"contextualTitle": "AppMap",
"visibility": "visible",
"icon": "images/logo.svg",
"when": "!appMap.showSignIn"
},
{
"id": "appmap.views.findings",
"name": "Runtime Analysis",
"visibility": "collapsed",
"when": "!appMap.showSignIn && appmap.scannerEnabled"
},
{
"id": "appmap.views.codeObjects",
"name": "Code Objects",
"visibility": "collapsed",
"when": "!appMap.showSignIn"
},
{
"id": "appmap.views.documentation",
"name": "Documentation",
"visibility": "collapsed",
"when": "!appMap.showSignIn"
}
]
},
"walkthroughs": [
{
"id": "navie.walkthrough",
"title": "Get started with AppMap Navie",
"description": "Your AI software assistant to plan, implement, document and diagram code solutions",
"steps": [
{
"id": "Sign in",
"title": "Sign into AppMap",
"description": "Use the sidebar to sign into AppMap.\n[Open sidebar](command:appmap.views.signIn.focus)\nYou can sign in with an email address, a GitHub account or a GitLab account.",
"media": {
"image": "images/walkthrough/configure-backend.svg",
"altText": "AppMap logo hovering above AI sparkles"
},
"when": "appMap.showSignIn",
"completionEvents": [
"onContext:!appMap.showSignIn"
]
},
{
"id": "configure-backend",
"title": "Choose your preferred AI model",
"description": "By default, AppMap Navie provides an LLM service based on GPT-4o.\nYou can configure Navie to use the GitHub Copilot LLM, or use your own model or API key. [See the documentation for details](https://appmap.io/docs/navie/bring-your-own-model.html).",
"media": {
"image": "images/walkthrough/configure-backend.svg",
"altText": "AppMap logo hovering above AI sparkles"
},
"when": "!appMap.showSignIn"
},
{
"id": "explain-and-diagram",
"media": {
"image": "images/walkthrough/ask-navie.svg",
"altText": "a screenshot of Navie chat"
},
"title": "Get code explanations and diagrams",
"description": "Open Navie to chat interactively about your code. Ask for explanations and diagrams. Navie automatically finds and interprets the most relevant code, documentation, and runtime data traces.\n[Ask Navie AI](command:appmap.explain)\n**Tip**: Use __AppMap: Ask Navie AI__ from the command palette to quickly open Navie.",
"when": "!appMap.showSignIn"
},
{
"id": "troubleshoot-and-solve",
"media": {
"image": "images/walkthrough/generate-and-apply.png",
"altText": "a screenshot of Navie chat with @generate command and apply button"
},
"title": "Solve complex coding issues",
"description": "Use Navie commands like @plan, @generate, and @test to solve problems quickly. Use the Apply button on any code suggestion apply the code change to the file. \n[Ask Navie AI](command:appmap.explain)\n**Tip**: Use __AppMap: Ask Navie AI__ from the command palette to quickly open Navie.",
"when": "!appMap.showSignIn"
},
{
"id": "ask-about-selection",
"title": "Ask about specific code",
"description": "Select code in your editor, then open Navie to ask about that specific code.\n**Tip**: Use __AppMap: Ask Navie AI__ from the command palette to quickly open Navie.\nYou can also use the light bulb menu on a code selection to ask Navie about selected code.",
"media": {
"image": "images/walkthrough/light-bulb.svg",
"altText": "light bulb menu showing Ask Navie option"
},
"when": "!appMap.showSignIn"
},
{
"id": "create-data",
"title": "Extend Navie's knowledge with AppMap data",
"description": "Recording AppMap trace data provides Navie with deep knowledge of code execution. Navie can see, explain, describe and diagram runtime interactions like HTTP requests and SQL queries.\n[Create AppMap Data](command:appmap.openInstallGuide)\n**Tip:** Use AppMap sidebar to browse your AppMap trace data files.",
"media": {
"image": "images/walkthrough/record-appmaps.png",
"altText": "an illustration of AppMap sidebar and an open execution diagram"
},
"when": "!appMap.showSignIn"
}
]
}
],
"menus": {
"commandPalette": [
{
"command": "appmap.context.openInFileExplorer",
"when": "false"
},
{
"command": "appmap.context.rename",
"when": "false"
},
{
"command": "appmap.context.saveToCollection",
"when": "false"
},
{
"command": "appmap.context.inspectCodeObject",
"when": "false"
},
{
"command": "appmap.context.compareSequenceDiagrams",
"when": "false"
},
{
"command": "appmap.context.deleteAppMaps",
"when": "false"
},
{
"command": "appmap.editor.title.addToContext",
"when": "false"
},
{
"command": "appmap.explorer.addToContext",
"when": "false"
},
{
"command": "appmap.addToContext",
"when": "activeWebviewPanelId=='chatSearch'"
}
],
"editor/title/context": [
{
"command": "appmap.editor.title.addToContext",
"when": "activeWebviewPanelId=='chatSearch' && resourceScheme == 'file'"
}
],
"explorer/context": [
{
"command": "appmap.explorer.addToContext",
"when": "activeWebviewPanelId=='chatSearch'"
}
],
"view/title": [
{
"command": "appmap.openInstallGuide",
"when": "view == appmap.views.appmaps",
"group": "navigation@3"
},
{
"command": "appmap.applyFilter",
"when": "view == appmap.views.appmaps && appmap.hasData",
"group": "navigation@2"
},
{
"command": "appmap.findByName",
"when": "view == appmap.views.appmaps && appmap.hasData",
"group": "navigation@1"
},
{
"command": "appmap.startRemoteRecording",
"when": "view == appmap.views.appmaps && !appmap.recordingIsRunning",
"group": "navigation@0"
},
{
"command": "appmap.stopCurrentRemoteRecording",
"when": "view == appmap.views.appmaps && appmap.recordingIsRunning",
"group": "navigation@0"
}
],
"view/item/context": [
{
"command": "appmap.context.openAsJson",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap",
"group": "inline"
},
{
"command": "appmap.context.deleteAppMap",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap",
"group": "inline"
},
{
"command": "appmap.context.openInFileExplorer",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap"
},
{
"command": "appmap.context.rename",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap"
},
{
"command": "appmap.context.saveToCollection",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap"
},
{
"command": "appmap.context.compareSequenceDiagrams",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMap"
},
{
"command": "appmap.context.deleteAppMaps",
"when": "view == appmap.views.appmaps && viewItem == appmap.views.appmaps.appMapCollection"
},
{
"command": "appmap.context.inspectCodeObject",
"when": "config.appMap.inspectEnabled == true && ( viewItem == appmap.views.codeObjects.package || viewItem == appmap.views.codeObjects.class || viewItem == appmap.views.codeObjects.function || viewItem == appmap.views.codeObjects.query || viewItem == appmap.views.codeObjects.route )"
}
]
}
},
"scripts": {
"vscode:prepublish": "node build/updateResources.js && yarn compile",
"lint": "eslint . --ext .ts",
"pretest": "yarn run lint && tsc --strict --skipLibCheck",
"test:precache": "node -e 'require(\"@vscode/test-electron\").downloadAndUnzipVSCode(process.env.VSCODE_INSIDERS_VERSION)'",
"test:integration": "ts-node ./test/integrationTest.ts",
"test:web-client": "mocha web/test/*.test.mjs",
"test:unit": "mocha test/unit/**/*.test.[tj]s",
"test:unit:some": "mocha",
"test": "yarn test:unit && yarn test:web-client && yarn test:integration && yarn test:system",
"compile": "NODE_ENV=production tsup --config tsup.config.ts",
"compile:dev": "tsup --config tsup.config.ts",
"watch": "tsup --config tsup.config.ts --watch",
"package": "vsce package",
"publish": "vsce publish",
"semantic-release": "semantic-release",
"list": "yarn info --json --recursive | build/translateInfo.js"
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-fs": "^2.0.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^8.2.0",
"@types/mockery": "^1.4.30",
"@types/node": "^18",
"@types/proper-lockfile": "^4.1.2",
"@types/ps-node": "^0.1.1",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.9",
"@types/tmp": "^0.2.3",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.19.0",
"@vue/compiler-sfc": "^3.2.37",
"appmap-node": "^2.19.3",
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"clipboardy": "^2.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"ignore": "^5.1.8",
"jayson": "^4.1.0",
"mocha": "^8.1.3",
"mocha-suppress-logs": "^0.3.1",
"mockery": "^2.1.0",
"nock": "^13.5.4",
"node-libs-browser": "^2.2.1",
"openapi-types": "^12.1.3",
"prettier": "^2.8.4",
"prettier-eslint": "^12.0.0",
"project-root-directory": "^1.0.3",
"ps-node": "^0.1.6",
"sass": "^1.32.2",
"semantic-release": "^17.3.8",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"tape": "^5.1.1",
"temp": "^0.9.4",
"tmp": "^0.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.1.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vscode-uri": "^3.0.7",
"yaml": "^2.1.1"
},
"dependencies": {
"@appland/appmap": "^3.129.0",
"@appland/client": "^1.14.1",
"@appland/components": "^4.39.0",
"@appland/diagrams": "^1.8.0",
"@appland/models": "^2.10.2",
"@appland/rpc": "^1.15.0",
"@appland/scanner": "^1.86.0",
"@appland/sequence-diagram": "^1.12.0",
"@yarnpkg/parsers": "^3.0.0-rc.45",
"bootstrap": "^4.5.3",
"bootstrap-autocomplete": "^2.3.7",
"diff": "^5.1.0",
"highlight.js": "^11.9.0",
"jquery": "^3.5.1",
"js-yaml": "^4.1.0",
"node-fetch": "^2.7.0",
"popper.js": "^1.16.1",
"proper-lockfile": "^4.1.2",
"semver": "^7.3.5",
"vscode-extension-telemetry": "^0.1.7",
"vue": "^2.7.14",
"vue-template-compiler": "^2.7.14",
"vuex": "^3.6.0"
},
"__metadata": {
"id": "41d86b02-68d3-4049-9422-95da6d11cc2e",
"publisherDisplayName": "AppLand",
"publisherId": "f7f1004e-6038-49cd-a096-4e618fe53f77",
"isPreReleaseVersion": false
},
"packageManager": "[email protected]"
}