{
  "name": "node-helper",
  "displayName": "Trae: Node.js",
  "version": "0.2.17",
  "publisher": "byted-icube",
  "description": "Node helper for Trae",
  "author": {
    "name": "Trae Team"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/vscode-extension-samples"
  },
  "l10n": "./l10n",
  "icon": "media/icon128.png",
  "categories": [
    "Programming Languages",
    "Snippets",
    "Linters",
    "Debuggers",
    "Formatters",
    "Testing"
  ],
  "galleryBanner": {
    "color": "#F2F2F2",
    "theme": "light"
  },
  "private": true,
  "scripts": {
    "clean": "rm -rf ./dist/* && rm -rf ./out/* && rm -rf ./bin/* && rm *.vsix",
    "package": "npx vsce package",
    "vscode:prepublish": "npm run build",
    "bundle": "node build.js",
    "bundle-dev": "npm run bundle -- --sourcemap",
    "bundle-watch": "npm run bundle -- --sourcemap --watch",
    "test-compile": "tsc -p ./",
    "build": "npm run bundle",
    "watch": "tsc -watch -p ./",
    "test": "npm run test-compile && mocha --timeout 5000 ./out/test",
    "lint": "gts lint src test",
    "fix-lint": "gts fix src test",
    "unit-test": "npm run test-compile && node ./node_modules/mocha/bin/_mocha -u tdd --timeout 5000 ./out/test/unit",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "postinstall": "patch-package"
  },
  "capabilities": {
    "untrustedWorkspaces": {
      "supported": false,
      "description": "Only worked in trusted workspace."
    }
  },
  "extensionDependencies": [],
  "dependencies": {
    "@byted-icube/download": "^0.2.5",
    "@byted-icube/vfox": "^0.2.0",
    "diff": "4.0.2",
    "execa": "^9.6.0",
    "find-up-simple": "^1.0.1",
    "glob": "^11.0.1",
    "ini": "^5.0.0",
    "moment": "2.29.4",
    "semver": "7.5.4",
    "tildify": "^3.0.0",
    "tree-kill": "file:third_party/tree-kill",
    "undici": "^7.10.0",
    "vscode-uri": "3.0.3",
    "which": "^5.0.0",
    "which-pm-runs": "^1.1.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^8.1.1",
    "@types/glob": "7.1.3",
    "@types/lodash": "^4.17.16",
    "@types/mocha": "7.0.2",
    "@types/node": "22",
    "@types/semver": "7.3.4",
    "@types/which": "^3.0.4",
    "@vscode/test-electron": "2.3.8",
    "@vscode/vsce": "2.20.1",
    "esbuild": "0.17.10",
    "esbuild-plugin-copy": "^2.1.1",
    "fs-extra": "^9.1.0",
    "gts": "4.0.0",
    "js-green-licenses": "4.0.0",
    "mocha": "9.2.2",
    "patch-package": "^8.0.0",
    "prettier": "2.2.1",
    "typescript": "4.9.4"
  },
  "engines": {
    "vscode": "^1.98.0",
    "node": ">=16.14.2"
  },
  "activationEvents": [
    "workspaceContains:*/package.json",
    "workspaceContains:package.json",
    "workspaceContains:*/*.js",
    "workspaceContains:*.js",
    "workspaceContains:*/*.ts",
    "workspaceContains:*.ts",
    "workspaceContains:*/*.jsx",
    "workspaceContains:*.jsx",
    "workspaceContains:*/*.tsx",
    "workspaceContains:*.tsx",
    "workspaceContains:*/*.mjs",
    "workspaceContains:*.mjs",
    "workspaceContains:*/*.cjs",
    "workspaceContains:*.cjs",
    "workspaceContains:*/*.mts",
    "workspaceContains:*.mts"
  ],
  "main": "./dist/main.js",
  "contributes": {
    "traeGuide": [
      {
        "language": "node",
        "displayName": "Node.js",
        "icon": "nodejs.svg",
        "sdkName": "%node.sdkName%",
        "ext": [
          ".js",
          ".ts",
          ".jsx",
          ".tsx",
          ".mjs",
          ".cjs",
          ".mts",
          ".cts"
        ],
        "projectDetectGlob": [
          "package.json",
          "*/package.json"
        ],
        "capabilities": {
          "supportChooseFromLocal": true,
          "supportCancel": true,
          "supportSetRegistry": true,
          "showInstallGuide": false
        }
      }
    ],
    "commands": [
      {
        "command": "icubeNodeEnhance.getRegistry",
        "title": "Get Registry",
        "enablement": "false",
        "category": "Trae: Node.js"
      },
      {
        "command": "traeNode.openNodeHelperSettings",
        "title": "Open Settings",
        "category": "Trae: Node.js"
      }
    ],
    "configuration": {
      "type": "object",
      "title": "Node Helper",
      "properties": {
        "node-helper.terminal.activateEnvironment": {
          "default": true,
          "description": "Apply the Node & PATH environment variables used by the extension to all integrated terminals.",
          "scope": "resource",
          "type": "boolean"
        }
      }
    }
  }
}
