typespec-vscode 0.66.0-dev.5 → 0.66.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/ThirdPartyNotices.txt +24 -1
- package/package.json +4 -2
- package/typespec-vscode-0.65.0.vsix +0 -0
package/ThirdPartyNotices.txt
CHANGED
|
@@ -12,7 +12,8 @@ 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.
|
|
15
|
+
5. which version 5.0.0 (https://github.com/npm/node-which)
|
|
16
|
+
6. yaml version 2.7.0 (github:eemeli/yaml)
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
%% balanced-match NOTICES AND INFORMATION BEGIN HERE
|
|
@@ -115,6 +116,28 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
115
116
|
END OF semver NOTICES AND INFORMATION
|
|
116
117
|
|
|
117
118
|
|
|
119
|
+
%% which NOTICES AND INFORMATION BEGIN HERE
|
|
120
|
+
=====================================================
|
|
121
|
+
The ISC License
|
|
122
|
+
|
|
123
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
124
|
+
|
|
125
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
126
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
127
|
+
copyright notice and this permission notice appear in all copies.
|
|
128
|
+
|
|
129
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
130
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
131
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
132
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
133
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
134
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
135
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
136
|
+
|
|
137
|
+
=====================================================");
|
|
138
|
+
END OF which NOTICES AND INFORMATION
|
|
139
|
+
|
|
140
|
+
|
|
118
141
|
%% yaml NOTICES AND INFORMATION BEGIN HERE
|
|
119
142
|
=====================================================
|
|
120
143
|
MIT License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.66.0-dev.
|
|
3
|
+
"version": "0.66.0-dev.6",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -229,8 +229,9 @@
|
|
|
229
229
|
"@rollup/plugin-typescript": "~12.1.0",
|
|
230
230
|
"@types/mocha": "^10.0.9",
|
|
231
231
|
"@types/node": "~22.10.10",
|
|
232
|
-
"@types/vscode": "~1.96.0",
|
|
233
232
|
"@types/semver": "^7.5.8",
|
|
233
|
+
"@types/vscode": "~1.96.0",
|
|
234
|
+
"@types/which": "^3.0.4",
|
|
234
235
|
"@typespec/compiler": "~0.65.3 || >=0.66.0-dev <0.66.0",
|
|
235
236
|
"@typespec/internal-build-utils": "~0.65.0 || >=0.66.0-dev <0.66.0",
|
|
236
237
|
"@vitest/coverage-v8": "^3.0.4",
|
|
@@ -245,6 +246,7 @@
|
|
|
245
246
|
"typescript": "~5.7.3",
|
|
246
247
|
"vitest": "^3.0.5",
|
|
247
248
|
"vscode-languageclient": "~9.0.1",
|
|
249
|
+
"which": "^5.0.0",
|
|
248
250
|
"yaml": "~2.7.0"
|
|
249
251
|
},
|
|
250
252
|
"dependencies": {},
|
|
Binary file
|