summaryrefslogtreecommitdiff
path: root/extension/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'extension/package.json')
-rw-r--r--extension/package.json45
1 files changed, 22 insertions, 23 deletions
diff --git a/extension/package.json b/extension/package.json
index d957e071..1219ca8e 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -1,12 +1,20 @@
{
"name": "continue",
+ "icon": "media/continue-gradient.png",
"repository": {
"type": "git",
- "url": ""
+ "url": "https://github.com/continuedev/continue"
},
+ "bugs": {
+ "url": "https://github.com/continuedev/continue/issues",
+ "email": "nate@continue.dev"
+ },
+ "homepage": "https://continue.dev",
+ "license": "Apache-2.0",
"displayName": "Continue",
- "description": "Reduce debugging time by 10x",
- "version": "0.0.1",
+ "pricing": "Free",
+ "description": "Refine code 10x faster",
+ "version": "0.0.13",
"publisher": "Continue",
"engines": {
"vscode": "^1.74.0"
@@ -15,7 +23,7 @@
"Other"
],
"activationEvents": [
- "*"
+ "onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
@@ -108,21 +116,6 @@
],
"keybindings": [
{
- "command": "continue.writeDocstring",
- "key": "ctrl+alt+l",
- "mac": "shift+cmd+l"
- },
- {
- "command": "continue.writeUnitTest",
- "key": "ctrl+alt+i",
- "mac": "shift+cmd+i"
- },
- {
- "command": "continue.askQuestionFromInput",
- "key": "ctrl+alt+j",
- "mac": "shift+cmd+j"
- },
- {
"command": "continue.suggestionDown",
"mac": "shift+ctrl+down",
"key": "shift+ctrl+down"
@@ -154,19 +147,23 @@
}
},
"scripts": {
+ "vscode:prepublish": "npm run esbuild-base -- --minify",
+ "esbuild-base": "rm -rf ./out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
+ "esbuild": "rm -rf ./out && npm run esbuild-base -- --sourcemap",
+ "esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
+ "test-compile": "tsc -p ./",
"clientgen": "rm -rf src/client/ && npx @openapitools/openapi-generator-cli generate -i ../schema/openapi.json -g typescript-fetch -o src/client/ --additional-properties=supportsES6=true,npmVersion=8.19.2,typescriptThreePlus=true",
"typegen": "node scripts/typegen.js",
- "vscode:prepublish": "npm run compile",
"rebuild": "electron-rebuild -v 19.1.8 node-pty",
"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",
- "package": "cp ./config/prod_config.json ./config/config.json && npm run compile && mkdir -p ./build && vsce package --out ./build && chmod 777 ./build/continue-0.0.1.vsix && cp ./config/dev_config.json ./config/config.json",
+ "package": "cp ./config/prod_config.json ./config/config.json && mkdir -p ./build && vsce package --out ./build && cp ./config/dev_config.json ./config/config.json",
"full-package": "cd ../continuedev && poetry build && cp ./dist/continuedev-0.1.0-py3-none-any.whl ../extension/scripts/continuedev-0.1.0-py3-none-any.whl && cd ../extension && npm run typegen && npm run clientgen && cd react-app && npm run build && cd .. && npm run package",
- "install-extension": "code --install-extension ./build/continue-0.0.1.vsix",
- "uninstall": "code --uninstall-extension Continue.continue",
+ "install-extension": "code --install-extension ./build/continue-0.0.8.vsix",
+ "uninstall": "code --uninstall-extension .continue",
"reinstall": "rm -rf ./build && npm run package && npm run uninstall && npm run install-extension"
},
"devDependencies": {
@@ -176,9 +173,11 @@
"@types/node": "16.x",
"@types/node-fetch": "^2.6.2",
"@types/vscode": "^1.74.0",
+ "@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",