{ "name": "continue", "icon": "media/terminal-continue.png", "version": "0.0.410", "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" } }