typespec-vscode 1.4.0-dev.3 → 1.4.0
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
CHANGED
|
@@ -14,7 +14,7 @@ granted herein, whether by implication, estoppel or otherwise.
|
|
|
14
14
|
4. change-case version 5.4.4 (https://github.com/blakeembrey/change-case)
|
|
15
15
|
5. cross-spawn version 7.0.6 (git@github.com:moxystudio/node-cross-spawn)
|
|
16
16
|
6. fast-deep-equal version 3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
17
|
-
7. fast-uri version 3.0
|
|
17
|
+
7. fast-uri version 3.1.0 (https://github.com/fastify/fast-uri)
|
|
18
18
|
8. isexe version 2.0.0 (https://github.com/isaacs/isexe)
|
|
19
19
|
9. isexe version 3.1.1 (https://github.com/isaacs/isexe)
|
|
20
20
|
10. json-schema-traverse version 1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
|
|
@@ -26,7 +26,7 @@ granted herein, whether by implication, estoppel or otherwise.
|
|
|
26
26
|
16. shebang-regex version 3.0.0 (sindresorhus/shebang-regex)
|
|
27
27
|
17. which version 2.0.2 (https://github.com/isaacs/node-which)
|
|
28
28
|
18. which version 5.0.0 (https://github.com/npm/node-which)
|
|
29
|
-
19. yaml version 2.8.
|
|
29
|
+
19. yaml version 2.8.1 (github:eemeli/yaml)
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
%% ajv NOTICES AND INFORMATION BEGIN HERE
|
|
@@ -200,10 +200,12 @@ END OF fast-deep-equal NOTICES AND INFORMATION
|
|
|
200
200
|
|
|
201
201
|
%% fast-uri NOTICES AND INFORMATION BEGIN HERE
|
|
202
202
|
=====================================================
|
|
203
|
-
Copyright (c) 2021 The Fastify Team
|
|
204
203
|
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
|
|
204
|
+
Copyright (c) 2021-present The Fastify team
|
|
205
205
|
All rights reserved.
|
|
206
206
|
|
|
207
|
+
The Fastify team members are listed at https://github.com/fastify/fastify#team.
|
|
208
|
+
|
|
207
209
|
Redistribution and use in source and binary forms, with or without
|
|
208
210
|
modification, are permitted provided that the following conditions are met:
|
|
209
211
|
* Redistributions of source code must retain the above copyright
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"main": "./dist/src/extension.cjs",
|
|
27
27
|
"browser": "./dist/src/web/extension.js",
|
|
28
28
|
"engines": {
|
|
29
|
-
"vscode": "^1.
|
|
29
|
+
"vscode": "^1.103.0"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
@@ -255,17 +255,15 @@
|
|
|
255
255
|
"devDependencies": {
|
|
256
256
|
"@types/cross-spawn": "~6.0.6",
|
|
257
257
|
"@types/mocha": "^10.0.9",
|
|
258
|
-
"@types/node": "~24.
|
|
258
|
+
"@types/node": "~24.3.0",
|
|
259
259
|
"@types/semver": "^7.5.8",
|
|
260
|
-
"@types/vscode": "~1.
|
|
260
|
+
"@types/vscode": "~1.103.0",
|
|
261
261
|
"@types/which": "^3.0.4",
|
|
262
|
-
"@typespec/compiler": "^1.3.0",
|
|
263
|
-
"@typespec/internal-build-utils": "^0.73.0 || >=0.74.0-dev <0.74.0",
|
|
264
262
|
"@vitest/coverage-v8": "^3.1.2",
|
|
265
263
|
"@vitest/ui": "^3.1.2",
|
|
266
264
|
"@vscode/extension-telemetry": "^1.0.0",
|
|
267
265
|
"@vscode/test-electron": "^2.3.9",
|
|
268
|
-
"@vscode/test-web": "^0.0.
|
|
266
|
+
"@vscode/test-web": "^0.0.72",
|
|
269
267
|
"@vscode/vsce": "~3.6.0",
|
|
270
268
|
"ajv": "~8.17.1",
|
|
271
269
|
"c8": "^10.1.3",
|
|
@@ -276,14 +274,14 @@
|
|
|
276
274
|
"rimraf": "~6.0.1",
|
|
277
275
|
"semver": "^7.7.1",
|
|
278
276
|
"swagger-ui-dist": "^5.20.1",
|
|
279
|
-
"typescript": "~5.
|
|
277
|
+
"typescript": "~5.9.2",
|
|
280
278
|
"vitest": "^3.1.2",
|
|
281
279
|
"vscode-languageclient": "~9.0.1",
|
|
282
280
|
"which": "^5.0.0",
|
|
283
|
-
"yaml": "~2.8.0"
|
|
281
|
+
"yaml": "~2.8.0",
|
|
282
|
+
"@typespec/compiler": "^1.4.0",
|
|
283
|
+
"@typespec/internal-build-utils": "^0.74.0"
|
|
284
284
|
},
|
|
285
|
-
"dependencies": {},
|
|
286
|
-
"peerDependencies": {},
|
|
287
285
|
"scripts": {
|
|
288
286
|
"clean": "rimraf ./dist ./temp",
|
|
289
287
|
"build": "pnpm compile && pnpm check && pnpm declaration-only && pnpm copy-templates && pnpm copy-tmlanguage && pnpm generate-language-configuration && pnpm generate-third-party-notices && pnpm package-vsix",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"package-vsix": "vsce package",
|
|
301
299
|
"deploy": "vsce publish",
|
|
302
300
|
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=. .",
|
|
303
|
-
"test:e2e": "pnpm test:web && pnpm test:extension",
|
|
304
301
|
"test:web": "vscode-test-web --quality stable --extensionDevelopmentPath=. --headless --extensionTestsPath=dist/test/web/suite.js ./test/web/data",
|
|
305
302
|
"test:extension": "vitest run --root test/extension"
|
|
306
303
|
}
|
|
Binary file
|
|
Binary file
|