typespec-vscode 0.59.0-dev.0 → 0.59.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.
@@ -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.2 (https://github.com/npm/node-semver)
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.0",
3
+ "version": "0.59.0",
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.90.0"
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,21 +128,19 @@
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.90.0",
136
- "@typespec/compiler": "~0.58.0 || >=0.59.0-dev <0.59.0",
137
- "@typespec/internal-build-utils": "~0.58.0 || >=0.59.0-dev <0.59.0",
138
- "@vitest/coverage-v8": "^1.6.0",
139
- "@vitest/ui": "^1.6.0",
140
- "@vscode/vsce": "~2.29.0",
131
+ "@types/vscode": "~1.91.0",
132
+ "@vitest/coverage-v8": "^2.0.4",
133
+ "@vitest/ui": "^2.0.4",
134
+ "@vscode/vsce": "~2.31.1",
141
135
  "c8": "^10.1.2",
142
- "rimraf": "~5.0.7",
143
- "rollup": "~4.18.0",
144
- "typescript": "~5.5.3",
145
- "vitest": "^1.6.0",
146
- "vscode-languageclient": "~9.0.1"
136
+ "rimraf": "~6.0.1",
137
+ "rollup": "~4.19.0",
138
+ "typescript": "~5.5.4",
139
+ "vitest": "^2.0.4",
140
+ "vscode-languageclient": "~9.0.1",
141
+ "@typespec/compiler": "~0.59.0",
142
+ "@typespec/internal-build-utils": "~0.59.0"
147
143
  },
148
- "dependencies": {},
149
- "peerDependencies": {},
150
144
  "scripts": {
151
145
  "clean": "rimraf ./dist ./temp",
152
146
  "build": "npm run compile && npm run copy-tmlanguage && npm run generate-language-configuration && npm run generate-third-party-notices && npm run package-vsix",