{
  "name": "carrot-guard",
  "displayName": "carrot-guard",
  "description": "n/a",
  "version": "0.0.1",
  "engines": {
    "vscode": "^1.101.0"
  },
  "categories": [
    "Other"
  ],
  "activationEvents": [
    "onLanguage:javascript",
    "onLanguage:typescript",
    "workspaceContains:carrot-scan.config.js"
  ],
  "contributes": {
    "commands": [
      {
        "command": "carrot-guard.scanFile",
        "title": "Carrot-Guard: Scan Current File"
      },
      {
        "command": "carrot-guard.scanWorkspace",
        "title": "Carrot-Guard: Scan Workspace"
      }
    ],
    "menus": {
      "editor/context": [
        {
          "command": "carrot-guard.scanFile",
          "group": "navigation"
        }
      ]
    }
  },
  "main": "./out/extension.js",
  "scripts": {
    "vscode:prepublish": "npm run compile",
    "compile": "tsc -p ./",
    "watch": "tsc -watch -p ./",
    "pretest": "npm run compile && npm run lint",
    "lint": "eslint src --ext ts",
    "test": "node ./out/test/runTest.js"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.3",
    "@types/node": "18.x",
    "@types/vscode": "^1.101.0",
    "@typescript-eslint/eslint-plugin": "^6.9.0",
    "@typescript-eslint/parser": "^6.9.0",
    "@vscode/test-electron": "^2.3.6",
    "eslint": "^8.52.0",
    "glob": "^10.3.10",
    "mocha": "^10.2.0",
    "typescript": "5.4"
  }
}
