typespec-vscode 0.64.1 → 0.65.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typespec-vscode",
3
- "version": "0.64.1",
3
+ "version": "0.65.0-dev.1",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec language support for VS Code",
6
6
  "homepage": "https://typespec.io",
@@ -112,6 +112,22 @@
112
112
  }
113
113
  }
114
114
  ],
115
+ "menus": {
116
+ "explorer/context": [
117
+ {
118
+ "command": "typespec.generateCode",
119
+ "when": "explorerResourceIsFolder || resourceLangId == typespec",
120
+ "group": "code_generation"
121
+ }
122
+ ],
123
+ "editor/context": [
124
+ {
125
+ "command": "typespec.generateCode",
126
+ "when": "resourceLangId == typespec",
127
+ "group": "code_generation"
128
+ }
129
+ ]
130
+ },
115
131
  "grammars": [
116
132
  {
117
133
  "language": "typespec",
@@ -155,24 +171,13 @@
155
171
  "command": "typespec.installGlobalCompilerCli",
156
172
  "title": "Install TypeSpec Compiler/CLI globally",
157
173
  "category": "TypeSpec"
174
+ },
175
+ {
176
+ "command": "typespec.importFromOpenApi3",
177
+ "title": "Import TypeSpec from OpenApi3",
178
+ "category": "TypeSpec"
158
179
  }
159
180
  ],
160
- "menus": {
161
- "explorer/context": [
162
- {
163
- "command": "typespec.generateCode",
164
- "when": "explorerResourceIsFolder || resourceLangId == typespec",
165
- "group": "code_generation"
166
- }
167
- ],
168
- "editor/context": [
169
- {
170
- "command": "typespec.generateCode",
171
- "when": "resourceLangId == typespec",
172
- "group": "code_generation"
173
- }
174
- ]
175
- },
176
181
  "semanticTokenScopes": [
177
182
  {
178
183
  "scopes": {
@@ -222,6 +227,8 @@
222
227
  "@types/node": "~22.7.9",
223
228
  "@types/vscode": "~1.94.0",
224
229
  "@types/semver": "^7.5.8",
230
+ "@typespec/compiler": "~0.64.0 || >=0.65.0-dev <0.65.0",
231
+ "@typespec/internal-build-utils": "~0.64.0 || >=0.65.0-dev <0.65.0",
225
232
  "@vitest/coverage-v8": "^2.1.5",
226
233
  "@vitest/ui": "^2.1.2",
227
234
  "@vscode/test-web": "^0.0.62",
@@ -234,10 +241,10 @@
234
241
  "vitest": "^2.1.5",
235
242
  "vscode-languageclient": "~9.0.1",
236
243
  "semver": "^7.6.3",
237
- "yaml": "~2.5.1",
238
- "@typespec/compiler": "~0.64.0",
239
- "@typespec/internal-build-utils": "~0.64.0"
244
+ "yaml": "~2.5.1"
240
245
  },
246
+ "dependencies": {},
247
+ "peerDependencies": {},
241
248
  "scripts": {
242
249
  "clean": "rimraf ./dist ./temp",
243
250
  "build": "npm run compile && npm run copy-tmlanguage && npm run generate-language-configuration && npm run generate-third-party-notices && npm run package-vsix",
index 99fa5a5..1c6c965 100644
Binary file