mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 12:47:14 +00:00
* chore: bump electron@35.0.1 * chore: update types/node@22.x * chore: update web types for node v22.x * chore: bump electron@35.1.2 * chore: update node.js build * chore: update app.dock usage Refs71f3ff6bf2* chore: bump electron@35.1.4 * chore: bump electron@35.1.5 * ci: bump sysroot to glibc 2.28 and gcc 10.5.0 * ci: enable timeout for smoketests * chore: bump min glibcxx to 3.4.26 for server * Revert "ci: enable timeout for smoketests" This reverts commitafb637e85d. * chore: update debian dependencies * fix: workaround npm.ps1 argument parsing with powershell * chore: update rpm dependencies * test: partially revert changes from 242535 * test: remove redudant keybinding dispatch for selectTab * test: fix test failure from running configured tasks * test: focus settings editor for preferences.test.ts * node - adopt compile cache (#246835) * node - adopt compile cache * adopt for utility process * tweaks * log state of compilation cache * Revert "log state of compilation cache" This reverts commit f3840387a583013834762e2c44f6e8424929297f. * Revert "node - adopt compile cache (#246835)" This reverts commit 673a00cab66c9bac87f3cd27b80efa41c80150f1. * chore: update builds * chore: bump electron@35.2.0 * chore: bump electron@35.2.1 * chore: bump electron@35.2.2 --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "vscode-json-languageserver",
|
|
"description": "JSON language server",
|
|
"version": "1.3.4",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"bin": {
|
|
"vscode-json-languageserver": "./bin/vscode-json-languageserver"
|
|
},
|
|
"main": "./out/node/jsonServerMain",
|
|
"dependencies": {
|
|
"@vscode/l10n": "^0.0.18",
|
|
"jsonc-parser": "^3.3.1",
|
|
"request-light": "^0.8.0",
|
|
"vscode-json-languageservice": "^5.5.0",
|
|
"vscode-languageserver": "^10.0.0-next.12",
|
|
"vscode-uri": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "22.x"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run clean && npm run compile",
|
|
"compile": "npx gulp compile-extension:json-language-features-server",
|
|
"watch": "npx gulp watch-extension:json-language-features-server",
|
|
"clean": "../../../node_modules/.bin/rimraf out",
|
|
"install-service-next": "npm install vscode-json-languageservice",
|
|
"install-service-latest": "npm install vscode-json-languageservice",
|
|
"install-service-local": "npm link vscode-json-languageservice",
|
|
"install-server-next": "npm install vscode-languageserver@next",
|
|
"install-server-local": "npm link vscode-languageserver-server",
|
|
"version": "git commit -m \"JSON Language Server $npm_package_version\" package.json"
|
|
}
|
|
}
|