typespec-vscode 0.59.0-dev.0 → 0.59.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/ThirdPartyNotices.txt +1 -1
- package/package.json +11 -15
- package/typespec-vscode-0.58.0.vsix +0 -0
- package/dist/src/extension.cjs +0 -21831
package/ThirdPartyNotices.txt
CHANGED
|
@@ -11,7 +11,7 @@ granted herein, whether by implication, estoppel or otherwise.
|
|
|
11
11
|
1. balanced-match version 1.0.2 (https://github.com/juliangruber/balanced-match)
|
|
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
|
-
4. semver version 7.6.
|
|
14
|
+
4. semver version 7.6.3 (https://github.com/npm/node-semver)
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
%% 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.59.0-dev.
|
|
3
|
+
"version": "0.59.0-dev.1",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -25,16 +25,12 @@
|
|
|
25
25
|
"type": "module",
|
|
26
26
|
"main": "./dist/src/extension.cjs",
|
|
27
27
|
"engines": {
|
|
28
|
-
"vscode": "^1.
|
|
28
|
+
"vscode": "^1.91.0"
|
|
29
29
|
},
|
|
30
30
|
"activationEvents": [
|
|
31
31
|
"onLanguage:typespec",
|
|
32
32
|
"onCommand:typespec.restartServer"
|
|
33
33
|
],
|
|
34
|
-
"files": [
|
|
35
|
-
"typespec-vscode-*.vsix",
|
|
36
|
-
"ThirdPartyNotices.txt"
|
|
37
|
-
],
|
|
38
34
|
"icon": "./icons/logo.png",
|
|
39
35
|
"contributes": {
|
|
40
36
|
"languages": [
|
|
@@ -132,17 +128,17 @@
|
|
|
132
128
|
"@rollup/plugin-node-resolve": "~15.2.3",
|
|
133
129
|
"@rollup/plugin-typescript": "~11.1.6",
|
|
134
130
|
"@types/node": "~18.11.19",
|
|
135
|
-
"@types/vscode": "~1.
|
|
136
|
-
"@typespec/compiler": "~0.58.
|
|
131
|
+
"@types/vscode": "~1.91.0",
|
|
132
|
+
"@typespec/compiler": "~0.58.1 || >=0.59.0-dev <0.59.0",
|
|
137
133
|
"@typespec/internal-build-utils": "~0.58.0 || >=0.59.0-dev <0.59.0",
|
|
138
|
-
"@vitest/coverage-v8": "^
|
|
139
|
-
"@vitest/ui": "^
|
|
140
|
-
"@vscode/vsce": "~2.
|
|
134
|
+
"@vitest/coverage-v8": "^2.0.4",
|
|
135
|
+
"@vitest/ui": "^2.0.4",
|
|
136
|
+
"@vscode/vsce": "~2.31.1",
|
|
141
137
|
"c8": "^10.1.2",
|
|
142
|
-
"rimraf": "~
|
|
143
|
-
"rollup": "~4.
|
|
144
|
-
"typescript": "~5.5.
|
|
145
|
-
"vitest": "^
|
|
138
|
+
"rimraf": "~6.0.1",
|
|
139
|
+
"rollup": "~4.19.0",
|
|
140
|
+
"typescript": "~5.5.4",
|
|
141
|
+
"vitest": "^2.0.4",
|
|
146
142
|
"vscode-languageclient": "~9.0.1"
|
|
147
143
|
},
|
|
148
144
|
"dependencies": {},
|
|
Binary file
|