mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-20 17:59:17 +00:00
Switches from webpack to esbuild for `merge-conflict`, `references-view`, `search-result`, and `simple-browser`
95 lines
2.8 KiB
JSON
95 lines
2.8 KiB
JSON
{
|
|
"name": "simple-browser",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"enabledApiProposals": [
|
|
"externalUriOpener"
|
|
],
|
|
"version": "10.0.0",
|
|
"icon": "media/icon.png",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
"engines": {
|
|
"vscode": "^1.70.0"
|
|
},
|
|
"main": "./out/extension",
|
|
"browser": "./dist/browser/extension",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:simpleBrowser.api.open",
|
|
"onOpenExternalUri:http",
|
|
"onOpenExternalUri:https",
|
|
"onWebviewPanel:simpleBrowser.view"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "simpleBrowser.show",
|
|
"title": "Show",
|
|
"category": "Simple Browser"
|
|
}
|
|
],
|
|
"configuration": [
|
|
{
|
|
"title": "Simple Browser",
|
|
"properties": {
|
|
"simpleBrowser.focusLockIndicator.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"title": "Focus Lock Indicator Enabled",
|
|
"description": "%configuration.focusLockIndicator.enabled.description%"
|
|
},
|
|
"simpleBrowser.useIntegratedBrowser": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"markdownDescription": "%configuration.useIntegratedBrowser.description%",
|
|
"scope": "application",
|
|
"tags": [
|
|
"experimental",
|
|
"onExP"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:simple-browser && npm run build-webview",
|
|
"watch": "npm run build-webview && gulp watch-extension:simple-browser",
|
|
"vscode:prepublish": "npm run build-ext && npm run build-webview",
|
|
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.mjs compile-extension:simple-browser ./tsconfig.json",
|
|
"build-webview": "node ./esbuild.webview.mts",
|
|
"compile-web": "npm-run-all2 -lp bundle-web typecheck-web",
|
|
"bundle-web": "node ./esbuild.browser.mts",
|
|
"typecheck-web": "tsgo --project ./tsconfig.json --noEmit",
|
|
"watch-web": "npm-run-all2 -lp watch-bundle-web watch-typecheck-web",
|
|
"watch-bundle-web": "node ./esbuild.browser.mts --watch",
|
|
"watch-typecheck-web": "tsgo --project ./tsconfig.json --noEmit --watch"
|
|
},
|
|
"dependencies": {
|
|
"@vscode/extension-telemetry": "^0.9.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.x",
|
|
"@types/vscode-webview": "^1.57.0",
|
|
"@vscode/codicons": "^0.0.36"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|