{
  "name": "sncontinue",
  "icon": "media/icon.png",
  "version": "0.0.413",
  "repository": {
    "type": "git",
    "url": "https://dummy.com/sncontinue"
  },
  "extensionKind": [
    "ui",
    "workspace"
  ],
  "bugs": {
    "url": "https://dummy.com/sncontinue/issues",
    "email": "tuowen.zhao@sambanovasystems.com"
  },
  "qna": "https://dummy.com/sncontinue/issues/new/choose",
  "license": "Apache-2.0",
  "displayName": "SNContinue - AMA Sambastudio",
  "pricing": "Free",
  "description": "Sambanova autopilot for software development - bring the power of ChatGPT to your IDE",
  "publisher": "Sambanova",
  "engines": {
    "vscode": "^1.67.0"
  },
  "galleryBanner": {
    "color": "#1E1E1E",
    "theme": "dark"
  },
  "categories": [
    "Programming Languages",
    "Education",
    "Machine Learning",
    "Snippets"
  ],
  "keywords": [
    "chatgpt",
    "github",
    "copilot",
    "llama",
    "codellama",
    "ai"
  ],
  "activationEvents": [
    "onStartupFinished",
    "onView:continueGUIView"
  ],
  "main": "./out/extension.js",
  "browser": "./out/extension.js",
  "contributes": {
    "configuration": {
      "title": "SNContinue",
      "properties": {
        "sncontinue.serverUrl": {
          "type": "string",
          "default": "http://localhost:65432",
          "description": "The URL of the Continue server if you are running Continue manually. NOTE: This is NOT the URL of the LLM server. If you want to use an LLM hosted at a custom URL, please see https://continue.dev/docs/customization#change-the-default-llm and complete configuration in `~/.continue/config.py`, which you can access by using the '/config' slash command."
        },
        "sncontinue.manuallyRunningServer": {
          "type": "boolean",
          "default": false,
          "description": "If you are manually running the Continue server, you should update the Server URL and check this box. This will stop Continue from attempting to remove your server and download a new version."
        }
      }
    },
    "commands": [
      {
        "command": "sncontinue.acceptDiff",
        "category": "SNContinue",
        "title": "Accept Diff"
      },
      {
        "command": "sncontinue.rejectDiff",
        "category": "SNContinue",
        "title": "Reject Diff"
      },
      {
        "command": "sncontinue.quickTextEntry",
        "category": "SNContinue",
        "title": "Quick Text Entry"
      },
      {
        "command": "sncontinue.viewLogs",
        "category": "SNContinue",
        "title": "View Continue Server Logs"
      },
      {
        "command": "sncontinue.toggleAuxiliaryBar",
        "category": "SNContinue",
        "title": "Toggle Right Sidebar"
      },
      {
        "command": "sncontinue.focusContinueInputWithEdit",
        "category": "SNContinue",
        "title": "Focus Continue Input With Edit"
      },
      {
        "command": "sncontinue.debugTerminal",
        "category": "SNContinue",
        "title": "Debug Terminal"
      }
    ],
    "keybindings": [
      {
        "command": "sncontinue.focusContinueInput",
        "mac": "cmd+m",
        "key": "ctrl+m"
      },
      {
        "command": "sncontinue.focusContinueInputWithEdit",
        "mac": "cmd+shift+m",
        "key": "ctrl+shift+m"
      },
      {
        "command": "sncontinue.acceptDiff",
        "mac": "shift+cmd+enter",
        "key": "shift+ctrl+enter"
      },
      {
        "command": "sncontinue.rejectDiff",
        "mac": "shift+cmd+backspace",
        "key": "shift+ctrl+backspace"
      },
      {
        "command": "sncontinue.quickTextEntry",
        "mac": "cmd+shift+l",
        "key": "ctrl+shift+l"
      },
      {
        "command": "sncontinue.toggleAuxiliaryBar",
        "mac": "alt+cmd+m",
        "key": "alt+ctrl+m"
      },
      {
        "command": "sncontinue.debugTerminal",
        "mac": "cmd+shift+r",
        "key": "ctrl+shift+r"
      }
    ],
    "menus": {
      "view/title": []
    },
    "viewsContainers": {
      "activitybar": [
        {
          "id": "sncontinue",
          "title": "SNContinue  ",
          "icon": "media/continue-dev-square.png"
        }
      ]
    },
    "views": {
      "sncontinue": [
        {
          "type": "webview",
          "id": "sncontinue.continueGUIView",
          "name": "  )",
          "visibility": "visible"
        }
      ]
    },
    "walkthroughs": [
      {
        "id": "sncontinue",
        "title": "Getting Started w. SNContinue",
        "description": "Learn how to use SNContinue",
        "steps": [
          {
            "id": "edit",
            "title": "Edit in natural language",
            "description": "Highlight a section of code and instruct Continue to refactor it (e.g. `/edit rewrite this function to be async`)",
            "media": {
              "image": "media/edit.png",
              "altText": "Empty image"
            },
            "completionEvents": []
          },
          {
            "id": "explain",
            "title": "Get possible explanations",
            "description": "Ask Continue about a part of your code to get another perspective (e.g. `where in the page should I be making this request to the backend?`)",
            "media": {
              "image": "media/explain.png",
              "altText": "Empty image"
            },
            "completionEvents": []
          },
          {
            "id": "generate",
            "title": "Generate files from scratch",
            "description": "Let Continue build the scaffolding of Python scripts, React components, and more (e.g. `/edit here is a connector for postgres, now write one for kafka`)",
            "media": {
              "image": "media/generate.png",
              "altText": "Empty image"
            },
            "completionEvents": []
          }
        ]
      }
    ]
  },
  "scripts": {
    "esbuild-base": "node esbuild.mjs",
    "vscode:prepublish": "npm run esbuild-base -- --minify",
    "esbuild": "npm run esbuild-base -- --sourcemap",
    "esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
    "tsc": "tsc -p ./",
    "tsc-watch": "tsc -watch -p ./",
    "typegen": "node scripts/typegen.js",
    "rebuild": "electron-rebuild -v 19.1.8 node-pty",
    "lint": "eslint src --ext ts",
    "build-test": "tsc && node esbuild.test.mjs",
    "test": "npm run build-test && node ./out/test-runner/runTestOnVSCodeHost.js",
    "prepackage": "node scripts/prepackage.js",
    "package": "node scripts/package.js",
    "package:pre-release": "node scripts/package.js --pre-release"
  },
  "devDependencies": {
    "@nestjs/common": "^8.4.7",
    "@openapitools/openapi-generator-cli": "^2.5.2",
    "@types/glob": "^8.0.0",
    "@types/mocha": "^10.0.1",
    "@types/node": "16.x",
    "@types/node-fetch": "^2.6.2",
    "@types/react-dom": "^18.2.4",
    "@types/request": "^2.48.8",
    "@types/vscode": "1.67",
    "@types/ws": "^8.5.4",
    "@typescript-eslint/eslint-plugin": "^5.45.0",
    "@typescript-eslint/parser": "^5.45.0",
    "@vscode/test-electron": "^2.2.0",
    "esbuild": "^0.17.19",
    "eslint": "^8.28.0",
    "glob": "^8.0.3",
    "json-schema-to-typescript": "^12.0.0",
    "mocha": "^10.1.0",
    "ovsx": "^0.8.3",
    "ts-jest": "^29.1.1",
    "typescript": "^4.9.3",
    "vite": "^4.3.9",
    "vsce": "^2.15.0"
  },
  "dependencies": {
    "@electron/rebuild": "^3.2.10",
    "@reduxjs/toolkit": "^1.9.3",
    "axios": "^1.2.5",
    "downshift": "^7.6.0",
    "fkill": "^8.1.0",
    "highlight.js": "^11.7.0",
    "highlightable": "^1.3.0-beta.0",
    "node-machine-id": "^1.1.12",
    "posthog-node": "^3.1.2",
    "react-markdown": "^8.0.7",
    "react-redux": "^8.0.5",
    "request": "^2.88.2",
    "strip-ansi": "^7.1.0",
    "tailwindcss": "^3.3.2",
    "vscode-languageclient": "^8.0.2",
    "ws": "^8.13.0"
  },
  "optionalDependencies": {
    "@esbuild/android-arm": "^0.18.17"
  }
}