typespec-vscode 0.65.0 → 0.66.0-dev.1
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 +12 -6
- package/typespec-vscode-0.65.0.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.0-dev.1",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -114,17 +114,21 @@
|
|
|
114
114
|
],
|
|
115
115
|
"menus": {
|
|
116
116
|
"explorer/context": [
|
|
117
|
+
{
|
|
118
|
+
"command": "typespec.importFromOpenApi3",
|
|
119
|
+
"group": "typespec@2"
|
|
120
|
+
},
|
|
117
121
|
{
|
|
118
122
|
"command": "typespec.generateCode",
|
|
119
123
|
"when": "explorerResourceIsFolder || resourceLangId == typespec",
|
|
120
|
-
"group": "
|
|
124
|
+
"group": "typespec@1"
|
|
121
125
|
}
|
|
122
126
|
],
|
|
123
127
|
"editor/context": [
|
|
124
128
|
{
|
|
125
129
|
"command": "typespec.generateCode",
|
|
126
130
|
"when": "resourceLangId == typespec",
|
|
127
|
-
"group": "
|
|
131
|
+
"group": "typespec@1"
|
|
128
132
|
}
|
|
129
133
|
]
|
|
130
134
|
},
|
|
@@ -227,6 +231,8 @@
|
|
|
227
231
|
"@types/node": "~22.10.10",
|
|
228
232
|
"@types/vscode": "~1.96.0",
|
|
229
233
|
"@types/semver": "^7.5.8",
|
|
234
|
+
"@typespec/compiler": "~0.65.2 || >=0.66.0-dev <0.66.0",
|
|
235
|
+
"@typespec/internal-build-utils": "~0.65.0 || >=0.66.0-dev <0.66.0",
|
|
230
236
|
"@vitest/coverage-v8": "^3.0.4",
|
|
231
237
|
"@vitest/ui": "^3.0.3",
|
|
232
238
|
"@vscode/test-web": "^0.0.65",
|
|
@@ -239,10 +245,10 @@
|
|
|
239
245
|
"typescript": "~5.7.3",
|
|
240
246
|
"vitest": "^3.0.5",
|
|
241
247
|
"vscode-languageclient": "~9.0.1",
|
|
242
|
-
"yaml": "~2.7.0"
|
|
243
|
-
"@typespec/compiler": "~0.65.0",
|
|
244
|
-
"@typespec/internal-build-utils": "~0.65.0"
|
|
248
|
+
"yaml": "~2.7.0"
|
|
245
249
|
},
|
|
250
|
+
"dependencies": {},
|
|
251
|
+
"peerDependencies": {},
|
|
246
252
|
"scripts": {
|
|
247
253
|
"clean": "rimraf ./dist ./temp",
|
|
248
254
|
"build": "npm run compile && npm run copy-tmlanguage && npm run generate-language-configuration && npm run generate-third-party-notices && npm run package-vsix",
|
|
Binary file
|