06-14-code-0113C7C3FED381A
This commit is contained in:
@ -1,12 +1,13 @@
|
||||
{
|
||||
"name": "VSCodium",
|
||||
"version": "1.91.1",
|
||||
"distro": "a08799837ca498c02f445ca7a896f446419af238",
|
||||
"version": "1.96.4",
|
||||
"distro": "c883c91dadf5f063b26c86ffe01851acee3747c6",
|
||||
"author": {
|
||||
"name": "VSCodium"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "./out/main",
|
||||
"main": "./out/main.js",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "echo Please run any of the test scripts from the scripts folder.",
|
||||
@ -16,27 +17,27 @@
|
||||
"test-extension": "vscode-test",
|
||||
"preinstall": "node build/npm/preinstall.js",
|
||||
"postinstall": "node build/npm/postinstall.js",
|
||||
"compile": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile",
|
||||
"compile": "node ./node_modules/gulp/bin/gulp.js compile",
|
||||
"watch": "npm-run-all -lp watch-client watch-extensions",
|
||||
"watchd": "deemon yarn watch",
|
||||
"watch-webd": "deemon yarn watch-web",
|
||||
"kill-watchd": "deemon --kill yarn watch",
|
||||
"kill-watch-webd": "deemon --kill yarn watch-web",
|
||||
"restart-watchd": "deemon --restart yarn watch",
|
||||
"restart-watch-webd": "deemon --restart yarn watch-web",
|
||||
"watch-client": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-client",
|
||||
"watch-clientd": "deemon yarn watch-client",
|
||||
"kill-watch-clientd": "deemon --kill yarn watch-client",
|
||||
"watch-extensions": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media",
|
||||
"watch-extensionsd": "deemon yarn watch-extensions",
|
||||
"kill-watch-extensionsd": "deemon --kill yarn watch-extensions",
|
||||
"watchd": "deemon npm run watch",
|
||||
"watch-webd": "deemon npm run watch-web",
|
||||
"kill-watchd": "deemon --kill npm run watch",
|
||||
"kill-watch-webd": "deemon --kill npm run watch-web",
|
||||
"restart-watchd": "deemon --restart npm run watch",
|
||||
"restart-watch-webd": "deemon --restart npm run watch-web",
|
||||
"watch-client": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-client",
|
||||
"watch-clientd": "deemon npm run watch-client",
|
||||
"kill-watch-clientd": "deemon --kill npm run watch-client",
|
||||
"watch-extensions": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media",
|
||||
"watch-extensionsd": "deemon npm run watch-extensions",
|
||||
"kill-watch-extensionsd": "deemon --kill npm run watch-extensions",
|
||||
"precommit": "node build/hygiene.js",
|
||||
"gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js",
|
||||
"electron": "node build/lib/electron",
|
||||
"7z": "7z",
|
||||
"update-grammars": "node build/npm/update-all-grammars.mjs",
|
||||
"update-localization-extension": "node build/npm/update-localization-extension.js",
|
||||
"smoketest": "node build/lib/preLaunch.js && cd test/smoke && yarn compile && node test/index.js",
|
||||
"smoketest": "node build/lib/preLaunch.js && cd test/smoke && npm run compile && node test/index.js",
|
||||
"smoketest-no-compile": "cd test/smoke && node test/index.js",
|
||||
"download-builtin-extensions": "node build/lib/builtInExtensions.js",
|
||||
"download-builtin-extensions-cg": "node build/lib/builtInExtensionsCG.js",
|
||||
@ -45,73 +46,78 @@
|
||||
"vscode-dts-compile-check": "tsc -p src/tsconfig.vscode-dts.json && tsc -p src/tsconfig.vscode-proposed-dts.json",
|
||||
"valid-layers-check": "node build/lib/layersChecker.js",
|
||||
"update-distro": "node build/npm/update-distro.mjs",
|
||||
"web": "echo 'yarn web' is replaced by './scripts/code-server' or './scripts/code-web'",
|
||||
"web": "echo 'npm run web' is replaced by './scripts/code-server' or './scripts/code-web'",
|
||||
"compile-cli": "gulp compile-cli",
|
||||
"compile-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-web",
|
||||
"watch-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-web",
|
||||
"watch-cli": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-cli",
|
||||
"compile-web": "node ./node_modules/gulp/bin/gulp.js compile-web",
|
||||
"watch-web": "node ./node_modules/gulp/bin/gulp.js watch-web",
|
||||
"watch-cli": "node ./node_modules/gulp/bin/gulp.js watch-cli",
|
||||
"eslint": "node build/eslint",
|
||||
"stylelint": "node build/stylelint",
|
||||
"playwright-install": "node build/azure-pipelines/common/installPlaywright.js",
|
||||
"compile-build": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-build",
|
||||
"compile-extensions-build": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-extensions-build",
|
||||
"minify-vscode": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode",
|
||||
"minify-vscode-reh": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh",
|
||||
"minify-vscode-reh-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web",
|
||||
"hygiene": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js hygiene",
|
||||
"core-ci": "node --max-old-space-size=8095 ./node_modules/gulp/bin/gulp.js core-ci",
|
||||
"core-ci-pr": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js core-ci-pr",
|
||||
"extensions-ci": "node --max-old-space-size=8095 ./node_modules/gulp/bin/gulp.js extensions-ci",
|
||||
"extensions-ci-pr": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js extensions-ci-pr",
|
||||
"playwright-install": "npm exec playwright install",
|
||||
"compile-build": "node ./node_modules/gulp/bin/gulp.js compile-build",
|
||||
"compile-extensions-build": "node ./node_modules/gulp/bin/gulp.js compile-extensions-build",
|
||||
"minify-vscode": "node ./node_modules/gulp/bin/gulp.js minify-vscode",
|
||||
"minify-vscode-reh": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh",
|
||||
"minify-vscode-reh-web": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web",
|
||||
"hygiene": "node ./node_modules/gulp/bin/gulp.js hygiene",
|
||||
"core-ci": "node ./node_modules/gulp/bin/gulp.js core-ci",
|
||||
"core-ci-pr": "node ./node_modules/gulp/bin/gulp.js core-ci-pr",
|
||||
"extensions-ci": "node ./node_modules/gulp/bin/gulp.js extensions-ci",
|
||||
"extensions-ci-pr": "node ./node_modules/gulp/bin/gulp.js extensions-ci-pr",
|
||||
"perf": "node scripts/code-perf.js",
|
||||
"update-build-ts-version": "yarn add typescript@next && tsc -p ./build/tsconfig.build.json"
|
||||
"update-build-ts-version": "npm install typescript@next && tsc -p ./build/tsconfig.build.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/1ds-core-js": "^3.2.13",
|
||||
"@microsoft/1ds-post-js": "^3.2.13",
|
||||
"@parcel/watcher": "2.1.0",
|
||||
"@types/semver": "^7.5.8",
|
||||
"@vscode/deviceid": "^0.1.1",
|
||||
"@vscode/iconv-lite-umd": "0.7.0",
|
||||
"@vscode/policy-watcher": "^1.1.4",
|
||||
"@vscode/proxy-agent": "^0.21.0",
|
||||
"@vscode/policy-watcher": "^1.1.8",
|
||||
"@vscode/proxy-agent": "^0.27.0",
|
||||
"@vscode/ripgrep": "^1.15.9",
|
||||
"@vscode/spdlog": "^0.15.0",
|
||||
"@vscode/sqlite3": "5.1.6-vscode",
|
||||
"@vscode/sqlite3": "5.1.8-vscode",
|
||||
"@vscode/sudo-prompt": "9.3.1",
|
||||
"@vscode/tree-sitter-wasm": "^0.0.4",
|
||||
"@vscode/vscode-languagedetection": "1.0.21",
|
||||
"@vscode/windows-mutex": "^0.5.0",
|
||||
"@vscode/windows-process-tree": "^0.6.0",
|
||||
"@vscode/windows-registry": "^1.1.0",
|
||||
"@xterm/addon-clipboard": "0.2.0-beta.4",
|
||||
"@xterm/addon-image": "0.9.0-beta.21",
|
||||
"@xterm/addon-search": "0.16.0-beta.21",
|
||||
"@xterm/addon-serialize": "0.14.0-beta.21",
|
||||
"@xterm/addon-unicode11": "0.9.0-beta.21",
|
||||
"@xterm/addon-webgl": "0.19.0-beta.21",
|
||||
"@xterm/headless": "5.6.0-beta.21",
|
||||
"@xterm/xterm": "5.6.0-beta.21",
|
||||
"@xterm/addon-clipboard": "^0.2.0-beta.53",
|
||||
"@xterm/addon-image": "^0.9.0-beta.70",
|
||||
"@xterm/addon-ligatures": "^0.10.0-beta.70",
|
||||
"@xterm/addon-search": "^0.16.0-beta.70",
|
||||
"@xterm/addon-serialize": "^0.14.0-beta.70",
|
||||
"@xterm/addon-unicode11": "^0.9.0-beta.70",
|
||||
"@xterm/addon-webgl": "^0.19.0-beta.70",
|
||||
"@xterm/headless": "^5.6.0-beta.70",
|
||||
"@xterm/xterm": "^5.6.0-beta.70",
|
||||
"http-proxy-agent": "^7.0.0",
|
||||
"https-proxy-agent": "^7.0.2",
|
||||
"jschardet": "3.1.2",
|
||||
"kerberos": "^2.0.1",
|
||||
"jschardet": "3.1.4",
|
||||
"kerberos": "2.1.1",
|
||||
"minimist": "^1.2.6",
|
||||
"native-is-elevated": "0.7.0",
|
||||
"native-keymap": "^3.3.5",
|
||||
"native-watchdog": "^1.4.1",
|
||||
"node-pty": "1.1.0-beta11",
|
||||
"node-pty": "^1.1.0-beta22",
|
||||
"open": "^8.4.2",
|
||||
"tas-client-umd": "0.2.0",
|
||||
"v8-inspect-profiler": "^0.1.1",
|
||||
"vscode-oniguruma": "1.7.0",
|
||||
"vscode-regexpp": "^3.1.0",
|
||||
"vscode-textmate": "9.0.0",
|
||||
"vscode-textmate": "9.1.0",
|
||||
"yauzl": "^3.0.0",
|
||||
"yazl": "^2.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.40.1",
|
||||
"@swc/core": "1.3.62",
|
||||
"@playwright/test": "^1.46.1",
|
||||
"@stylistic/eslint-plugin-ts": "^2.8.0",
|
||||
"@types/cookie": "^0.3.3",
|
||||
"@types/debug": "^4.1.5",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"@types/gulp-svgmin": "^1.2.1",
|
||||
"@types/http-proxy-agent": "^2.0.1",
|
||||
"@types/kerberos": "^1.1.2",
|
||||
@ -128,31 +134,31 @@
|
||||
"@types/winreg": "^1.2.30",
|
||||
"@types/yauzl": "^2.10.0",
|
||||
"@types/yazl": "^2.4.2",
|
||||
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
||||
"@typescript-eslint/experimental-utils": "^5.57.0",
|
||||
"@typescript-eslint/parser": "^6.21.0",
|
||||
"@typescript-eslint/utils": "^8.8.0",
|
||||
"@vscode/gulp-electron": "^1.36.0",
|
||||
"@vscode/l10n-dev": "0.0.35",
|
||||
"@vscode/telemetry-extractor": "^1.10.2",
|
||||
"@vscode/test-cli": "^0.0.6",
|
||||
"@vscode/test-electron": "^2.3.8",
|
||||
"@vscode/test-web": "^0.0.50",
|
||||
"@vscode/test-electron": "^2.4.0",
|
||||
"@vscode/test-web": "^0.0.62",
|
||||
"@vscode/v8-heap-parser": "^0.1.0",
|
||||
"@vscode/vscode-perf": "^0.0.14",
|
||||
"@vscode/vscode-perf": "^0.0.19",
|
||||
"@webgpu/types": "^0.1.44",
|
||||
"ansi-colors": "^3.2.3",
|
||||
"asar": "^3.0.3",
|
||||
"chromium-pickle-js": "^0.2.0",
|
||||
"cookie": "^0.4.0",
|
||||
"cookie": "^0.7.2",
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
"css-loader": "^6.9.1",
|
||||
"cssnano": "^6.0.3",
|
||||
"debounce": "^1.0.0",
|
||||
"deemon": "^1.8.0",
|
||||
"electron": "29.4.0",
|
||||
"eslint": "8.36.0",
|
||||
"electron": "32.2.7",
|
||||
"eslint": "^9.11.1",
|
||||
"eslint-formatter-compact": "^8.40.0",
|
||||
"eslint-plugin-header": "3.1.1",
|
||||
"eslint-plugin-jsdoc": "^46.5.0",
|
||||
"eslint-plugin-local": "^1.0.0",
|
||||
"eslint-plugin-jsdoc": "^50.3.1",
|
||||
"eslint-plugin-local": "^6.0.0",
|
||||
"event-stream": "3.3.4",
|
||||
"fancy-log": "^1.3.3",
|
||||
"file-loader": "^6.2.0",
|
||||
@ -161,8 +167,6 @@
|
||||
"gulp-azure-storage": "^0.12.1",
|
||||
"gulp-bom": "^3.0.0",
|
||||
"gulp-buffer": "0.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-eslint": "^5.0.0",
|
||||
"gulp-filter": "^5.1.0",
|
||||
"gulp-flatmap": "^1.0.2",
|
||||
"gulp-gunzip": "^1.0.0",
|
||||
@ -186,12 +190,11 @@
|
||||
"mime": "^1.4.1",
|
||||
"minimatch": "^3.0.4",
|
||||
"minimist": "^1.2.6",
|
||||
"mkdirp": "^1.0.4",
|
||||
"mocha": "^10.2.0",
|
||||
"mocha-junit-reporter": "^2.2.1",
|
||||
"mocha-multi-reporters": "^1.5.1",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"opn": "^6.0.0",
|
||||
"os-browserify": "^0.3.0",
|
||||
"p-all": "^1.0.0",
|
||||
"path-browserify": "^1.0.1",
|
||||
"postcss": "^8.4.33",
|
||||
@ -204,20 +207,27 @@
|
||||
"source-map": "0.6.1",
|
||||
"source-map-support": "^0.3.2",
|
||||
"style-loader": "^3.3.2",
|
||||
"ts-loader": "^9.4.2",
|
||||
"ts-loader": "^9.5.1",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsec": "0.2.7",
|
||||
"typescript": "^5.6.0-dev.20240618",
|
||||
"tslib": "^2.6.3",
|
||||
"typescript": "^5.8.0-dev.20241202",
|
||||
"typescript-eslint": "^8.8.0",
|
||||
"util": "^0.12.4",
|
||||
"vscode-nls-dev": "^3.3.1",
|
||||
"webpack": "^5.91.0",
|
||||
"webpack": "^5.94.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-stream": "^7.0.0",
|
||||
"xml2js": "^0.5.0",
|
||||
"yaserver": "^0.4.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"node-gyp-build": "4.8.1"
|
||||
"overrides": {
|
||||
"node-gyp-build": "4.8.1",
|
||||
"kerberos@2.1.1": {
|
||||
"node-addon-api": "7.1.0"
|
||||
},
|
||||
"@parcel/watcher@2.1.0": {
|
||||
"node-addon-api": "7.1.0"
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -229,5 +239,5 @@
|
||||
"optionalDependencies": {
|
||||
"windows-foreground-love": "0.5.0"
|
||||
},
|
||||
"release": "24193"
|
||||
"release": "25017"
|
||||
}
|
@ -34,8 +34,8 @@
|
||||
"builtInExtensions": [
|
||||
{
|
||||
"name": "ms-vscode.js-debug-companion",
|
||||
"version": "1.1.2",
|
||||
"sha256": "e034b8b41beb4e97e02c70f7175bd88abe66048374c2bd629f54bb33354bc2aa",
|
||||
"version": "1.1.3",
|
||||
"sha256": "7380a890787452f14b2db7835dfa94de538caf358ebc263f9d46dd68ac52de93",
|
||||
"repo": "https://github.com/microsoft/vscode-js-debug-companion",
|
||||
"metadata": {
|
||||
"id": "99cb0b7f-7354-4278-b8da-6cc79972169d",
|
||||
@ -50,8 +50,8 @@
|
||||
},
|
||||
{
|
||||
"name": "ms-vscode.js-debug",
|
||||
"version": "1.91.0",
|
||||
"sha256": "53b99146c7fa280f00c74414e09721530c622bf3e5eac2c967ddfb9906b51c80",
|
||||
"version": "1.96.0",
|
||||
"sha256": "278cd8b129c133d834a8105d0e0699f2f940c5c159fa5c821c7b9a4f7ffd3581",
|
||||
"repo": "https://github.com/microsoft/vscode-js-debug",
|
||||
"metadata": {
|
||||
"id": "25629058-ddac-4e17-abba-74678e126c5d",
|
||||
@ -66,8 +66,8 @@
|
||||
},
|
||||
{
|
||||
"name": "ms-vscode.vscode-js-profile-table",
|
||||
"version": "1.0.9",
|
||||
"sha256": "3b62ee4276a2bbea3fe230f94b1d5edd915b05966090ea56f882e1e0ab53e1a6",
|
||||
"version": "1.0.10",
|
||||
"sha256": "7361748ddf9fd09d8a2ed1f2a2d7376a2cf9aae708692820b799708385c38e08",
|
||||
"repo": "https://github.com/microsoft/vscode-js-profile-visualizer",
|
||||
"metadata": {
|
||||
"id": "7e52b41b-71ad-457b-ab7e-0620f1fc4feb",
|
||||
@ -153,6 +153,7 @@
|
||||
"extensionEnabledApiProposals": {
|
||||
"ms-vscode.vscode-selfhost-test-provider": [
|
||||
"testObserver",
|
||||
"testRelatedCode",
|
||||
"attributableCoverage"
|
||||
],
|
||||
"VisualStudioExptTeam.vscodeintellicode-completions": [
|
||||
@ -182,6 +183,7 @@
|
||||
"resolvers"
|
||||
],
|
||||
"ms-python.python": [
|
||||
"codeActionAI",
|
||||
"contribEditorContentMenu",
|
||||
"quickPickSortByLabel",
|
||||
"portsAttributes",
|
||||
@ -190,7 +192,8 @@
|
||||
"terminalDataWriteEvent",
|
||||
"terminalExecuteCommandEvent",
|
||||
"contribIssueReporter",
|
||||
"terminalShellIntegration"
|
||||
"notebookReplDocument",
|
||||
"notebookVariableProvider"
|
||||
],
|
||||
"ms-dotnettools.dotnet-interactive-vscode": [
|
||||
"notebookMessaging"
|
||||
@ -284,6 +287,7 @@
|
||||
"codeActionRanges",
|
||||
"commentingRangeHint",
|
||||
"commentReactor",
|
||||
"commentReveal",
|
||||
"commentThreadApplicability",
|
||||
"contribAccessibilityHelpContent",
|
||||
"contribCommentEditorActionsMenu",
|
||||
@ -316,6 +320,7 @@
|
||||
"chatParticipantAdditions",
|
||||
"defaultChatParticipant",
|
||||
"embeddings",
|
||||
"chatEditing",
|
||||
"chatVariableResolver",
|
||||
"chatProvider",
|
||||
"mappedEditsProvider",
|
||||
@ -323,6 +328,9 @@
|
||||
"codeActionAI",
|
||||
"findTextInFiles",
|
||||
"textSearchProvider",
|
||||
"textSearchProvider2",
|
||||
"activeComment",
|
||||
"commentReveal",
|
||||
"contribSourceControlInputBoxMenu",
|
||||
"contribCommentEditorActionsMenu",
|
||||
"contribCommentThreadAdditionalMenu",
|
||||
@ -334,7 +342,9 @@
|
||||
"testObserver",
|
||||
"aiTextSearchProvider",
|
||||
"documentFiltersExclusive",
|
||||
"chatParticipantPrivate"
|
||||
"chatParticipantPrivate",
|
||||
"contribDebugCreateConfiguration",
|
||||
"inlineEdit"
|
||||
],
|
||||
"GitHub.remotehub": [
|
||||
"contribRemoteHelp",
|
||||
@ -358,9 +368,10 @@
|
||||
"notebookCellExecutionState"
|
||||
],
|
||||
"ms-python.debugpy": [
|
||||
"portsAttributes",
|
||||
"contribIssueReporter",
|
||||
"debugVisualization"
|
||||
"contribViewsWelcome",
|
||||
"debugVisualization",
|
||||
"portsAttributes"
|
||||
],
|
||||
"ms-toolsai.jupyter-renderers": [
|
||||
"contribNotebookStaticPreloads"
|
||||
@ -379,7 +390,8 @@
|
||||
"quickPickItemTooltip",
|
||||
"notebookExecution",
|
||||
"notebookCellExecution",
|
||||
"notebookVariableProvider"
|
||||
"notebookVariableProvider",
|
||||
"notebookReplDocument"
|
||||
],
|
||||
"dbaeumer.vscode-eslint": [
|
||||
"notebookCellExecutionState"
|
||||
@ -390,14 +402,6 @@
|
||||
"ms-azuretools.vscode-azureappservice": [
|
||||
"terminalDataWriteEvent"
|
||||
],
|
||||
"ms-azuretools.vscode-azureresourcegroups": [
|
||||
"authGetSessions"
|
||||
],
|
||||
"ms-azuretools.vscode-azure-github-copilot": [
|
||||
"chatParticipantAdditions",
|
||||
"embeddings",
|
||||
"languageModelSystem"
|
||||
],
|
||||
"ms-vscode.anycode": [
|
||||
"extensionsAny"
|
||||
],
|
||||
@ -407,6 +411,7 @@
|
||||
"redhat.java": [
|
||||
"documentPaste"
|
||||
],
|
||||
"vscjava.vscode-java-pack": [],
|
||||
"ms-dotnettools.csdevkit": [
|
||||
"inlineCompletionsAdditions"
|
||||
],
|
||||
@ -425,6 +430,17 @@
|
||||
"chatParticipantAdditions",
|
||||
"languageModelSystem"
|
||||
],
|
||||
"ms-toolsai.datawrangler": [],
|
||||
"ms-vscode.vscode-commander": [],
|
||||
"ms-vscode.vscode-websearchforcopilot": [],
|
||||
"ms-vscode.vscode-copilot-data-analysis": [
|
||||
"chatVariableResolver",
|
||||
"chatProvider"
|
||||
],
|
||||
"ms-vscode.vscode-copilot-vision": [
|
||||
"chatReferenceBinaryData",
|
||||
"codeActionAI"
|
||||
],
|
||||
"jeanp413.open-remote-ssh": [
|
||||
"resolvers",
|
||||
"tunnels",
|
||||
@ -616,17 +632,17 @@
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"commit": "8512cb3341b26a5dba985a9a17eed8d7c3362886",
|
||||
"date": "2024-07-11T18:40:02.024Z",
|
||||
"commit": "3fbfa3d78a491a8cea397a4a0dad3116ad14fdee",
|
||||
"date": "2025-01-18T11:47:34.619Z",
|
||||
"checksums": {
|
||||
"vs/base/parts/sandbox/electron-sandbox/preload.js": "ZmpI8APXTA/LQeIHx77ZBnQqbyOAZV1rdiYG783NclQ",
|
||||
"vs/workbench/workbench.desktop.main.js": "G2395FvKOpIA2soxgl6iQx/CwBKBYoKqydUhv6o8rUs",
|
||||
"vs/workbench/workbench.desktop.main.css": "vyx6YBWtpO7+gmEVNtL92kuOOPEg0X36aFczGNQfW8E",
|
||||
"vs/workbench/api/node/extensionHostProcess.js": "Z5rvgEBpDTvtmTMgNZnz6+pmW6XHHBwOsXLl0S1bxW0",
|
||||
"vs/code/electron-sandbox/workbench/workbench.html": "n2mHBTaWJpw5iIh3QLxm6IoEPn+GYtXdtEqlHXzADvM",
|
||||
"vs/code/electron-sandbox/workbench/workbench.js": "Mf64DSyQiflXo1LuUwarnU/T3ihTcTc4T5epfrA093c"
|
||||
"vs/base/parts/sandbox/electron-sandbox/preload.js": "sSvjl8TbIOnXGbpbd15eYRmZwL+l3ETmcfxfdn8bNwU",
|
||||
"vs/workbench/workbench.desktop.main.js": "6OwcKSlKjMWVOpYUE0kDw4jr9KAR0QMyXn8zv4DOkSk",
|
||||
"vs/workbench/workbench.desktop.main.css": "tW++3DYOHxgJWLLNxL2oIFxRpF+HW87T6cPdzPWfOks",
|
||||
"vs/workbench/api/node/extensionHostProcess.js": "kkYZFGxxoxU8/9S+s5uBpHJSJEdm6E6/RwAnD+S34k0",
|
||||
"vs/code/electron-sandbox/workbench/workbench.html": "RhgaUfNHCwkUtPNBt+HPnUAO0QW9qf+he7Nf/Dsx/dg",
|
||||
"vs/code/electron-sandbox/workbench/workbench.js": "WIG6C8BuTOV+2j6ei26EZje5HBX69pqmAOaAF6mtu8U"
|
||||
},
|
||||
"version": "1.91.1",
|
||||
"release": "24193",
|
||||
"version": "1.96.4",
|
||||
"release": "25017",
|
||||
"target": "user"
|
||||
}
|
Reference in New Issue
Block a user