{
  "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"
      }
    ],
    "menus": {
      "commandPalette": [
        {
          "command": "simpleBrowser.show",
          "when": "isWeb"
        }
      ]
    },
    "configuration": [
      {
        "title": "Simple Browser",
        "properties": {
          "simpleBrowser.focusLockIndicator.enabled": {
            "type": "boolean",
            "default": true,
            "title": "Focus Lock Indicator Enabled",
            "description": "%configuration.focusLockIndicator.enabled.description%"
          }
        }
      }
    ]
  },
  "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"
  }
}
