-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 4.64 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
{
"name": "coc-redocly",
"version": "0.2.2",
"description": "Redocly Language Server extension to coc.nvim",
"author": "Henry Barreto <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"vim",
"nvim",
"vscode",
"coc",
"redocly",
"openapi"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"prepare": "tsc"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/decompress": "^4.2.4",
"@types/download": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"coc.nvim": "^0.0.80",
"esbuild": "^0.14.24",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^1.6.2",
"decompress": "^4.2.1",
"download": "^8.0.0",
"electron": "^22.3.25"
},
"engines": {
"coc": "^0.0.80",
"node": ">=16.16.0"
},
"activationEvents": [
"workspaceContains:.redocly.yaml",
"onLanguage:yaml",
"onLanguage:json",
"onCommand:RedoclyOpenAPI.openPreview",
"onCommand:RedoclyOpenAPI.openContext"
],
"contributes": {
"commands": [
{
"command": "redoclyOpenAPI.openPreview",
"title": "Open preview",
"category": "Redocly OpenAPI",
"enablement": "editorLangId == yaml || editorLangId == json",
"icon": {
"light": "./out/webview/icons/redocly-light.svg",
"dark": "./out/webview/icons/redocly-dark.svg"
}
},
{
"command": "redoclyOpenAPI.openContext",
"title": "Open cursor context",
"category": "Redocly OpenAPI",
"enablement": "editorLangId == yaml",
"icon": {
"light": "./out/webview/icons/openapi-light.svg",
"dark": "./out/webview/icons/openapi-dark.svg"
}
}
],
"configuration": {
"type": "object",
"title": "redoclyOpenAPI",
"properties": {
"redoclyOpenAPI.enable": {
"scope": "enable",
"type": "boolean",
"default": true,
"description": "Enable/disable Redocly OpenAPI extension."
},
"redoclyOpenAPI.version": {
"scope": "version",
"type": "string",
"default": "0.3.4",
"description": "Redocly extension version."
},
"redoclyOpenAPI.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"redoclyOpenAPI.api.key": {
"scope": "window",
"type": "string",
"description": "Api key for preview."
},
"redoclyOpenAPI.api.region": {
"scope": "window",
"type": "string",
"enum": [
"us",
"eu"
],
"default": "us",
"description": "Region availability of api key for preview."
}
}
},
"configurationDefaults": {
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.autoIndent": "full",
"editor.wordBasedSuggestions": false
}
}
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henrybarreto/coc-redocly.git"
},
"bugs": {
"url": "https://github.com/henrybarreto/coc-redocly/issues"
},
"homepage": "https://github.com/henrybarreto/coc-redocly#readme"
}