This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.12 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
{
"name": "apicurito-editor",
"description": "Apicurito Editor for Visual Studio Code",
"version": "0.0.1",
"publisher": "apicurio",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json",
"onCommand:apicurito.start"
],
"main": "./dist/src-ext/extension.js",
"contributes": {
"commands": [
{
"command": "apicurito.start",
"title": "Open in Apicurito editor",
"category": "Apicurito"
}
],
"menus": {
"commandPalette": [
{
"command": "apicurito.start",
"when": "false"
}
],
"explorer/context": [
{
"when": "resourceExtname =~ /\\.(json|yaml)$/",
"command": "apicurito.start",
"group": "Apicurito"
}
]
}
},
"scripts": {
"ng": "ng",
"vscode:prepublish": "ng build && tsc -p tsconfig.ext.json",
"compile": "ng build && tsc -p tsconfig.ext.json"
},
"dependencies": {
"@angular/animations": "11.2.14",
"@angular/common": "11.2.14",
"@angular/compiler": "11.2.14",
"@angular/core": "11.2.14",
"@angular/forms": "11.2.14",
"@angular/platform-browser": "11.2.14",
"@angular/platform-browser-dynamic": "11.2.14",
"@angular/router": "11.2.14",
"@patternfly/patternfly": "1.0.250",
"@types/mousetrap": "~1.6.2",
"apicurio-design-studio": "0.2.51",
"apicurio-data-models": "1.1.18",
"js-base64": "2.5.1",
"apicurio-ts-core": "0.1.3",
"bootstrap": "3.4.1",
"brace": "^0.11.1",
"core-js": "2.6.5",
"js-yaml": "3.13.1",
"marked": "0.7.0",
"moment": "2.23.0",
"mousetrap": "~1.6.3",
"ngx-bootstrap": "7.1.2",
"ngx-clipboard": "14.0.1",
"oai-ts-commands": "0.2.62",
"oai-ts-core": "0.2.36",
"patternfly": "3.59.1",
"pluralize": "7.0.0",
"rxjs": "^6.5.3",
"zone.js": "^0.11.3"
},
"devDependencies": {
"tslint": "^6.1.3",
"@types/vscode": "^1.51.0",
"@angular-devkit/build-angular": "0.1102.18",
"@angular/cli": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@angular/language-service": "11.2.14",
"@types/node": "~12.20.46",
"@types/marked": "0.6.0",
"protractor": "~5.4.0",
"ts-node": "10.7.0",
"typescript": "~4.0",
"vscode-test": "~1.6.1"
}
}