typespec-vscode 0.65.0-dev.0 → 0.65.0-dev.10
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/ThirdPartyNotices.txt +1 -1
- package/package.json +39 -34
- package/typespec-vscode-0.64.0.vsix +0 -0
package/ThirdPartyNotices.txt
CHANGED
|
@@ -12,7 +12,7 @@ granted herein, whether by implication, estoppel or otherwise.
|
|
|
12
12
|
2. brace-expansion version 2.0.1 (https://github.com/juliangruber/brace-expansion)
|
|
13
13
|
3. minimatch version 5.1.6 (https://github.com/isaacs/minimatch)
|
|
14
14
|
4. semver version 7.6.3 (https://github.com/npm/node-semver)
|
|
15
|
-
5. yaml version 2.
|
|
15
|
+
5. yaml version 2.7.0 (github:eemeli/yaml)
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
%% balanced-match NOTICES AND INFORMATION BEGIN HERE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.65.0-dev.
|
|
3
|
+
"version": "0.65.0-dev.10",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"main": "./dist/src/extension.cjs",
|
|
28
28
|
"browser": "./dist/src/web/extension.js",
|
|
29
29
|
"engines": {
|
|
30
|
-
"vscode": "^1.
|
|
30
|
+
"vscode": "^1.96.0"
|
|
31
31
|
},
|
|
32
32
|
"activationEvents": [
|
|
33
33
|
"onLanguage:typespec",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"typespec.initTemplatesUrls": {
|
|
78
78
|
"type": "array",
|
|
79
79
|
"default": [],
|
|
80
|
-
"description": "List of URLs to fetch templates from when creating a new project.",
|
|
80
|
+
"description": "List of URLs to fetch templates from when creating a new project.\n\nExample:\n\"typespec.initTemplatesUrls\": [{\n\"name\": \"displayName\",\n\"url\": \"https://urlToTheFileContainsTemplates\"\n}],",
|
|
81
81
|
"scope": "machine-overridable",
|
|
82
82
|
"items": {
|
|
83
83
|
"type": "object",
|
|
@@ -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": {
|
|
@@ -215,28 +220,28 @@
|
|
|
215
220
|
]
|
|
216
221
|
},
|
|
217
222
|
"devDependencies": {
|
|
218
|
-
"@rollup/plugin-commonjs": "~28.0.
|
|
219
|
-
"@rollup/plugin-node-resolve": "~
|
|
223
|
+
"@rollup/plugin-commonjs": "~28.0.2",
|
|
224
|
+
"@rollup/plugin-node-resolve": "~16.0.0",
|
|
220
225
|
"@rollup/plugin-typescript": "~12.1.0",
|
|
221
226
|
"@types/mocha": "^10.0.9",
|
|
222
|
-
"@types/node": "~22.
|
|
223
|
-
"@types/vscode": "~1.
|
|
227
|
+
"@types/node": "~22.10.10",
|
|
228
|
+
"@types/vscode": "~1.96.0",
|
|
224
229
|
"@types/semver": "^7.5.8",
|
|
225
230
|
"@typespec/compiler": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
226
231
|
"@typespec/internal-build-utils": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
227
|
-
"@vitest/coverage-v8": "^
|
|
228
|
-
"@vitest/ui": "^
|
|
229
|
-
"@vscode/test-web": "^0.0.
|
|
230
|
-
"@vscode/vsce": "~3.
|
|
231
|
-
"c8": "^10.1.
|
|
232
|
-
"mocha": "^
|
|
232
|
+
"@vitest/coverage-v8": "^3.0.4",
|
|
233
|
+
"@vitest/ui": "^3.0.3",
|
|
234
|
+
"@vscode/test-web": "^0.0.65",
|
|
235
|
+
"@vscode/vsce": "~3.2.1",
|
|
236
|
+
"c8": "^10.1.3",
|
|
237
|
+
"mocha": "^11.1.0",
|
|
233
238
|
"rimraf": "~6.0.1",
|
|
234
|
-
"rollup": "~4.
|
|
235
|
-
"typescript": "~5.6.3",
|
|
236
|
-
"vitest": "^2.1.5",
|
|
237
|
-
"vscode-languageclient": "~9.0.1",
|
|
239
|
+
"rollup": "~4.31.0",
|
|
238
240
|
"semver": "^7.6.3",
|
|
239
|
-
"
|
|
241
|
+
"typescript": "~5.7.3",
|
|
242
|
+
"vitest": "^3.0.4",
|
|
243
|
+
"vscode-languageclient": "~9.0.1",
|
|
244
|
+
"yaml": "~2.7.0"
|
|
240
245
|
},
|
|
241
246
|
"dependencies": {},
|
|
242
247
|
"peerDependencies": {},
|
|
Binary file
|