vscode/extensions/references-view/package.json
Robo 5216c04428
chore: update to electron 29 (#209818)
* chore: update electron@29.1.0

* chore: update typings to 20.x

* chore: bump electron@29.1.5

* ci: fix crash in compiling extensions-ci

* chore: disable .d.ts check for build/

$ ../node_modules/.bin/tsc -p tsconfig.build.json
node_modules/@types/chokidar/index.d.ts:21:14 - error TS2420: Class 'import("/Users/demohan/github/vscode/build/node_modules/@types/chokidar/index").FSWatcher' incorrectly implements interface 'import("fs").FSWatcher'.
  Type 'FSWatcher' is missing the following properties from type 'FSWatcher': ref, unref

21 export class FSWatcher extends EventEmitter implements fs.FSWatcher {
                ~~~~~~~~~

node_modules/chokidar/types/index.d.ts:8:14 - error TS2420: Class 'import("/Users/demohan/github/vscode/build/node_modules/chokidar/types/index").FSWatcher' incorrectly implements interface 'import("fs").FSWatcher'.
  Type 'FSWatcher' is missing the following properties from type 'FSWatcher': ref, unref

8 export class FSWatcher extends EventEmitter implements fs.FSWatcher {
               ~~~~~~~~~

Found 2 errors in 2 files.

Errors  Files
     1  node_modules/@types/chokidar/index.d.ts:21
     1  node_modules/chokidar/types/index.d.ts:8

Refs a0f9e09f64

* chore: update core types

* temp: fix layer validation

* chore: update nodejs checksums

* ci: use latest v20 LTS for missing node-gyp

Refs eacec5f490

* ci: define LIBCPP_HARDENING_MODE

* ci: fix crash in vscode-web-min-ci

* chore: update rpm deps-list

* chore: bump tree-sitter-typescript@0.20.5

* chore: bump electron@29.3.0

* chore: bump electron@29.3.1

* chore: update rpm deps-list for x86_64

* ci: disable io_uring UV backend on linux

* ci: disable io_uring backend for oss as well

* chore: update typings to 20.x

* ci: add TODO for io_uring workaround

* chore: bump distro

* chore: update preinstall node version checks

* chore: update @types/gulp

Refs https://github.com/microsoft/vscode/issues/212442

* ci: disable io_uring in more test suites
2024-05-11 01:20:28 +09:00

405 lines
12 KiB
JSON

{
"name": "references-view",
"displayName": "%displayName%",
"description": "%description%",
"icon": "media/icon.png",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "^1.67.0"
},
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-references-view"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-references-view/issues"
},
"activationEvents": [
"onCommand:references-view.find",
"onCommand:editor.action.showReferences"
],
"main": "./out/extension",
"browser": "./dist/extension.js",
"contributes": {
"configuration": {
"properties": {
"references.preferredLocation": {
"description": "%config.references.preferredLocation%",
"type": "string",
"default": "peek",
"enum": [
"peek",
"view"
],
"enumDescriptions": [
"%config.references.preferredLocation.peek%",
"%config.references.preferredLocation.view%"
]
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "references-view",
"icon": "$(references)",
"title": "%container.title%"
}
]
},
"views": {
"references-view": [
{
"id": "references-view.tree",
"name": "%view.title%",
"when": "reference-list.isActive"
}
]
},
"commands": [
{
"command": "references-view.findReferences",
"title": "%cmd.references-view.findReferences%",
"category": "%cmd.category.references%"
},
{
"command": "references-view.findImplementations",
"title": "%cmd.references-view.findImplementations%",
"category": "%cmd.category.references%"
},
{
"command": "references-view.clearHistory",
"title": "%cmd.references-view.clearHistory%",
"category": "%cmd.category.references%",
"icon": "$(clear-all)"
},
{
"command": "references-view.clear",
"title": "%cmd.references-view.clear%",
"category": "%cmd.category.references%",
"icon": "$(clear-all)"
},
{
"command": "references-view.refresh",
"title": "%cmd.references-view.refresh%",
"category": "%cmd.category.references%",
"icon": "$(refresh)"
},
{
"command": "references-view.pickFromHistory",
"title": "%cmd.references-view.pickFromHistory%",
"category": "%cmd.category.references%"
},
{
"command": "references-view.removeReferenceItem",
"title": "%cmd.references-view.removeReferenceItem%",
"icon": "$(close)"
},
{
"command": "references-view.copy",
"title": "%cmd.references-view.copy%"
},
{
"command": "references-view.copyAll",
"title": "%cmd.references-view.copyAll%"
},
{
"command": "references-view.copyPath",
"title": "%cmd.references-view.copyPath%"
},
{
"command": "references-view.refind",
"title": "%cmd.references-view.refind%",
"icon": "$(refresh)"
},
{
"command": "references-view.showCallHierarchy",
"title": "%cmd.references-view.showCallHierarchy%",
"category": "Calls"
},
{
"command": "references-view.showOutgoingCalls",
"title": "%cmd.references-view.showOutgoingCalls%",
"category": "Calls",
"icon": "$(call-outgoing)"
},
{
"command": "references-view.showIncomingCalls",
"title": "%cmd.references-view.showIncomingCalls%",
"category": "Calls",
"icon": "$(call-incoming)"
},
{
"command": "references-view.removeCallItem",
"title": "%cmd.references-view.removeCallItem%",
"icon": "$(close)"
},
{
"command": "references-view.next",
"title": "%cmd.references-view.next%",
"enablement": "references-view.canNavigate"
},
{
"command": "references-view.prev",
"title": "%cmd.references-view.prev%",
"enablement": "references-view.canNavigate"
},
{
"command": "references-view.showTypeHierarchy",
"title": "%cmd.references-view.showTypeHierarchy%",
"category": "Types"
},
{
"command": "references-view.showSupertypes",
"title": "%cmd.references-view.showSupertypes%",
"category": "Types",
"icon": "$(type-hierarchy-super)"
},
{
"command": "references-view.showSubtypes",
"title": "%cmd.references-view.showSubtypes%",
"category": "Types",
"icon": "$(type-hierarchy-sub)"
},
{
"command": "references-view.removeTypeItem",
"title": "%cmd.references-view.removeTypeItem%",
"icon": "$(close)"
}
],
"menus": {
"editor/context": [
{
"command": "references-view.findReferences",
"when": "editorHasReferenceProvider",
"group": "0_navigation@1"
},
{
"command": "references-view.findImplementations",
"when": "editorHasImplementationProvider",
"group": "0_navigation@2"
},
{
"command": "references-view.showCallHierarchy",
"when": "editorHasCallHierarchyProvider",
"group": "0_navigation@3"
},
{
"command": "references-view.showTypeHierarchy",
"when": "editorHasTypeHierarchyProvider",
"group": "0_navigation@4"
}
],
"view/title": [
{
"command": "references-view.clear",
"group": "navigation@3",
"when": "view == references-view.tree && reference-list.hasResult"
},
{
"command": "references-view.clearHistory",
"group": "navigation@3",
"when": "view == references-view.tree && reference-list.hasHistory && !reference-list.hasResult"
},
{
"command": "references-view.refresh",
"group": "navigation@2",
"when": "view == references-view.tree && reference-list.hasResult"
},
{
"command": "references-view.showOutgoingCalls",
"group": "navigation@1",
"when": "view == references-view.tree && reference-list.hasResult && reference-list.source == callHierarchy && references-view.callHierarchyMode == showIncoming"
},
{
"command": "references-view.showIncomingCalls",
"group": "navigation@1",
"when": "view == references-view.tree && reference-list.hasResult && reference-list.source == callHierarchy && references-view.callHierarchyMode == showOutgoing"
},
{
"command": "references-view.showSupertypes",
"group": "navigation@1",
"when": "view == references-view.tree && reference-list.hasResult && reference-list.source == typeHierarchy && references-view.typeHierarchyMode != supertypes"
},
{
"command": "references-view.showSubtypes",
"group": "navigation@1",
"when": "view == references-view.tree && reference-list.hasResult && reference-list.source == typeHierarchy && references-view.typeHierarchyMode != subtypes"
}
],
"view/item/context": [
{
"command": "references-view.removeReferenceItem",
"group": "inline",
"when": "view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"
},
{
"command": "references-view.removeCallItem",
"group": "inline",
"when": "view == references-view.tree && viewItem == call-item"
},
{
"command": "references-view.removeTypeItem",
"group": "inline",
"when": "view == references-view.tree && viewItem == type-item"
},
{
"command": "references-view.refind",
"group": "inline",
"when": "view == references-view.tree && viewItem == history-item"
},
{
"command": "references-view.removeReferenceItem",
"group": "1",
"when": "view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"
},
{
"command": "references-view.removeCallItem",
"group": "1",
"when": "view == references-view.tree && viewItem == call-item"
},
{
"command": "references-view.removeTypeItem",
"group": "1",
"when": "view == references-view.tree && viewItem == type-item"
},
{
"command": "references-view.refind",
"group": "1",
"when": "view == references-view.tree && viewItem == history-item"
},
{
"command": "references-view.copy",
"group": "2@1",
"when": "view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"
},
{
"command": "references-view.copyPath",
"group": "2@2",
"when": "view == references-view.tree && viewItem == file-item"
},
{
"command": "references-view.copyAll",
"group": "2@3",
"when": "view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"
},
{
"command": "references-view.showOutgoingCalls",
"group": "1",
"when": "view == references-view.tree && viewItem == call-item"
},
{
"command": "references-view.showIncomingCalls",
"group": "1",
"when": "view == references-view.tree && viewItem == call-item"
},
{
"command": "references-view.showSupertypes",
"group": "1",
"when": "view == references-view.tree && viewItem == type-item"
},
{
"command": "references-view.showSubtypes",
"group": "1",
"when": "view == references-view.tree && viewItem == type-item"
}
],
"commandPalette": [
{
"command": "references-view.removeReferenceItem",
"when": "never"
},
{
"command": "references-view.removeCallItem",
"when": "never"
},
{
"command": "references-view.removeTypeItem",
"when": "never"
},
{
"command": "references-view.copy",
"when": "never"
},
{
"command": "references-view.copyAll",
"when": "never"
},
{
"command": "references-view.copyPath",
"when": "never"
},
{
"command": "references-view.refind",
"when": "never"
},
{
"command": "references-view.findReferences",
"when": "editorHasReferenceProvider"
},
{
"command": "references-view.clear",
"when": "reference-list.hasResult"
},
{
"command": "references-view.clearHistory",
"when": "reference-list.isActive && !reference-list.hasResult"
},
{
"command": "references-view.refresh",
"when": "reference-list.hasResult"
},
{
"command": "references-view.pickFromHistory",
"when": "reference-list.isActive"
},
{
"command": "references-view.next",
"when": "never"
},
{
"command": "references-view.prev",
"when": "never"
}
]
},
"keybindings": [
{
"command": "references-view.findReferences",
"when": "editorHasReferenceProvider",
"key": "shift+alt+f12"
},
{
"command": "references-view.next",
"when": "reference-list.hasResult",
"key": "f4"
},
{
"command": "references-view.prev",
"when": "reference-list.hasResult",
"key": "shift+f4"
},
{
"command": "references-view.showCallHierarchy",
"when": "editorHasCallHierarchyProvider",
"key": "shift+alt+h"
}
]
},
"scripts": {
"compile": "npx gulp compile-extension:references-view",
"watch": "npx gulp watch-extension:references-view"
},
"devDependencies": {
"@types/node": "20.x"
}
}