{
  "name": "icube-go-coding-experience-helper",
  "publisher": "byted-icube",
  "publisherDisplayName": "Trae",
  "displayName": "Go Coding Experience Helper",
  "description": "Enhance Go coding in Trae - Search Everywhere, implementation jumps, and more",
  "version": "0.1.8",
  "l10n": "./l10n",
  "engines": {
    "vscode": "^1.98.0"
  },
  "categories": [
    "Other"
  ],
  "activationEvents": [
    "workspaceContains:.idea"
  ],
  "main": "./dist/extension.js",
  "enabledApiProposals": [
    "findTextInFiles",
    "icube"
  ],
  "contributes": {
    "commands": [
      {
        "command": "searchEverywhere.show",
        "title": "%command.searchEverywhere.show%",
        "category": "Search"
      },
      {
        "command": "jetbrains.experience.helper",
        "title": "%command.jetbrains.experience.helper%",
        "category": "Go Coding",
        "enablement": "jetbrains.helper.enabled"
      },
      {
        "command": "jetbrains.experience.helper.reset",
        "title": "%command.jetbrains.experience.helper.reset%",
        "category": "Go Coding",
        "enablement": "jetbrains.helper.enabled"
      }
    ],
    "configuration": [
      {
        "title": "Go Coding Experience Helper",
        "properties": {
          "trae.searchEverywhere.enabled": {
            "type": "boolean",
            "default": false,
            "description": "%config.searchEverywhere.enabled%"
          },
          "trae.hoverPeekTypeDefinition.enabled": {
            "type": "boolean",
            "default": false,
            "description": "%config.hoverPeekTypeDefinition.enabled%"
          },
          "trae.goMainRunDebug.enabled": {
            "type": "boolean",
            "default": false,
            "description": "%config.goMainRunDebug.enabled%"
          }
        }
      },
      {
        "title": "gopls",
        "properties": {
          "gopls": {
            "type": "object",
            "default": {},
            "description": "gopls language server configuration",
            "properties": {
              "ui.codelenses": {
                "type": "object",
                "description": "Codelenses configuration"
              },
              "hoverClickableSymbols": {
                "type": "boolean",
                "description": "Enable clickable symbols in hover"
              },
              "ui.navigation.importShortcut": {
                "type": "string",
                "enum": [
                  "Both",
                  "Definition",
                  "Link"
                ],
                "description": "Import shortcut behavior"
              },
              "ui.completion.usePlaceholders": {
                "type": "boolean",
                "description": "Use placeholders in completions"
              }
            }
          }
        }
      }
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Trae-AI/Trae"
  },
  "scripts": {
    "clean": "rm -rf ./dist/* && rm -rf ./out/* && rm *.vsix",
    "package": "npx vsce package",
    "vscode:prepublish": "npm run build",
    "build": "npm run check-types && node esbuild.js --production",
    "compile": "npm run check-types && node esbuild.js",
    "watch": "npm-run-all -p watch:*",
    "watch:esbuild": "node esbuild.js --watch",
    "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
    "check-types": "tsc --noEmit",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "dependencies": {
    "@vscode/ripgrep": "npm:@byted-fe/ripgrep@1.7.2"
  },
  "devDependencies": {
    "@types/node": "20.x",
    "@types/jest": "^29.5.0",
    "esbuild": "^0.25.1",
    "jest": "^29.5.0",
    "npm-run-all": "^4.1.5",
    "ts-jest": "^29.1.0",
    "typescript": "^5.8.2"
  }
}
