summaryrefslogtreecommitdiff
path: root/extension/package.json
blob: 17950862b89851caee45f7be0e47f4cea80b2433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{
  "name": "continue",
  "icon": "media/terminal-continue.png",
  "version": "0.0.408",
  "repository": {
    "type": "git",
    "url": "https://github.com/continuedev/continue"
  },
  "extensionKind": [
    "ui",
    "workspace"
  ],
  "bugs": {
    "url": "https://github.com/continuedev/continue/issues",
    "email": "nate@continue.dev"
  },
  "homepage": "https://continue.dev",
  "qna": "https://github.com/continuedev/continue/issues/new/choose",
  "license": "Apache-2.0",
  "displayName": "Continue - Use Code Llama in VS Code",
  "pricing": "Free",
  "description": "Open-source copilot for software development - bring the power of ChatGPT to your IDE",
  "publisher": "Continue",
  "engines": {
    "vscode": "^1.67.0"
  },
  "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": "Continue",
      "properties": {
        "continue.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."
        },
        "continue.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": "continue.acceptDiff",
        "category": "Continue",
        "title": "Accept Diff"
      },
      {
        "command": "continue.rejectDiff",
        "category": "Continue",
        "title": "Reject Diff"
      },
      {
        "command": "continue.quickTextEntry",
        "category": "Continue",
        "title": "Quick Text Entry"
      },
      {
        "command": "continue.viewLogs",
        "category": "Continue",
        "title": "View Continue Server Logs"
      },
      {
        "command": "continue.toggleAuxiliaryBar",
        "category": "Continue",
        "title": "Toggle Right Sidebar"
      },
      {
        "command": "continue.focusContinueInputWithEdit",
        "category": "Continue",
        "title": "Focus Continue Input With Edit"
      },
      {
        "command": "continue.debugTerminal",
        "category": "Continue",
        "title": "Debug Terminal"
      }
    ],
    "keybindings": [
      {
        "command": "continue.focusContinueInput",
        "mac": "cmd+m",
        "key": "ctrl+m"
      },
      {
        "command": "continue.focusContinueInputWithEdit",
        "mac": "cmd+shift+m",
        "key": "ctrl+shift+m"
      },
      {
        "command": "continue.acceptDiff",
        "mac": "shift+cmd+enter",
        "key": "shift+ctrl+enter"
      },
      {
        "command": "continue.rejectDiff",
        "mac": "shift+cmd+backspace",
        "key": "shift+ctrl+backspace"
      },
      {
        "command": "continue.quickTextEntry",
        "mac": "cmd+shift+l",
        "key": "ctrl+shift+l"
      },
      {
        "command": "continue.toggleAuxiliaryBar",
        "mac": "alt+cmd+m",
        "key": "alt+ctrl+m"
      },
      {
        "command": "continue.debugTerminal",
        "mac": "cmd+shift+r",
        "key": "ctrl+shift+r"
      }
    ],
    "menus": {
      "view/title": []
    },
    "viewsContainers": {
      "activitybar": [
        {
          "id": "continue",
          "title": "Continue  ",
          "icon": "media/continue-dev-square.png"
        }
      ]
    },
    "views": {
      "continue": [
        {
          "type": "webview",
          "id": "continue.continueGUIView",
          "name": "  )",
          "visibility": "visible"
        }
      ]
    },
    "walkthroughs": [
      {
        "id": "continue",
        "title": "Getting Started",
        "description": "Learn how to use Continue",
        "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"
  },
  "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"
  }
}