typespec-vscode 0.67.0-dev.4 → 0.67.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -4
- package/typespec-vscode-0.66.0.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.67.0-dev.
|
|
3
|
+
"version": "0.67.0-dev.6",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -116,12 +116,17 @@
|
|
|
116
116
|
"explorer/context": [
|
|
117
117
|
{
|
|
118
118
|
"command": "typespec.importFromOpenApi3",
|
|
119
|
-
"group": "typespec@
|
|
119
|
+
"group": "typespec@3"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"command": "typespec.generateCode",
|
|
123
123
|
"when": "explorerResourceIsFolder || resourceLangId == typespec",
|
|
124
124
|
"group": "typespec@1"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"command": "typespec.showOpenApi3",
|
|
128
|
+
"when": "resourceLangId == typespec",
|
|
129
|
+
"group": "typespec@2"
|
|
125
130
|
}
|
|
126
131
|
],
|
|
127
132
|
"editor/context": [
|
|
@@ -129,6 +134,11 @@
|
|
|
129
134
|
"command": "typespec.generateCode",
|
|
130
135
|
"when": "resourceLangId == typespec",
|
|
131
136
|
"group": "typespec@1"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"command": "typespec.showOpenApi3",
|
|
140
|
+
"when": "resourceLangId == typespec",
|
|
141
|
+
"group": "typespec@2"
|
|
132
142
|
}
|
|
133
143
|
]
|
|
134
144
|
},
|
|
@@ -180,6 +190,11 @@
|
|
|
180
190
|
"command": "typespec.importFromOpenApi3",
|
|
181
191
|
"title": "Import TypeSpec from OpenApi3",
|
|
182
192
|
"category": "TypeSpec"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"command": "typespec.showOpenApi3",
|
|
196
|
+
"title": "Show OpenAPI3 Documentation",
|
|
197
|
+
"category": "TypeSpec"
|
|
183
198
|
}
|
|
184
199
|
],
|
|
185
200
|
"semanticTokenScopes": [
|
|
@@ -232,8 +247,8 @@
|
|
|
232
247
|
"@types/semver": "^7.5.8",
|
|
233
248
|
"@types/vscode": "~1.97.0",
|
|
234
249
|
"@types/which": "^3.0.4",
|
|
235
|
-
"@typespec/compiler": "
|
|
236
|
-
"@typespec/internal-build-utils": "
|
|
250
|
+
"@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
251
|
+
"@typespec/internal-build-utils": "^0.66.0 || >=0.67.0-dev <0.67.0",
|
|
237
252
|
"@vitest/coverage-v8": "^3.0.7",
|
|
238
253
|
"@vitest/ui": "^3.0.7",
|
|
239
254
|
"@vscode/test-web": "^0.0.67",
|
|
@@ -242,7 +257,9 @@
|
|
|
242
257
|
"mocha": "^11.1.0",
|
|
243
258
|
"rimraf": "~6.0.1",
|
|
244
259
|
"rollup": "~4.34.9",
|
|
260
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
245
261
|
"semver": "^7.7.1",
|
|
262
|
+
"swagger-ui-dist": "^5.20.0",
|
|
246
263
|
"typescript": "~5.8.2",
|
|
247
264
|
"vitest": "^3.0.7",
|
|
248
265
|
"vscode-languageclient": "~9.0.1",
|
|
Binary file
|