summaryrefslogtreecommitdiff
path: root/extension/package.json
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-05-27 18:35:51 -0400
committerGitHub <noreply@github.com>2023-05-27 18:35:51 -0400
commit5ef9950b3bff328a76b41852b3ea9de5b7ff7c8d (patch)
treed8509839838394c5acaecaa0b023983da73601c3 /extension/package.json
parent741f85b6b2b26e5e007ebf92b336a832af6af5d4 (diff)
parent36522ad6551bfcc51b1e923e7d50dfca1af1c697 (diff)
downloadsncontinue-5ef9950b3bff328a76b41852b3ea9de5b7ff7c8d.tar.gz
sncontinue-5ef9950b3bff328a76b41852b3ea9de5b7ff7c8d.tar.bz2
sncontinue-5ef9950b3bff328a76b41852b3ea9de5b7ff7c8d.zip
Merge pull request #11 from continuedev/syntactic-sugar
Syntactic sugar
Diffstat (limited to 'extension/package.json')
-rw-r--r--extension/package.json38
1 files changed, 18 insertions, 20 deletions
diff --git a/extension/package.json b/extension/package.json
index d957e071..525ec075 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.2",
"publisher": "Continue",
"engines": {
"vscode": "^1.74.0"
@@ -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,9 +147,13 @@
}
},
"scripts": {
+ "vscode:prepublish": "npm run esbuild-base -- --minify",
+ "esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
+ "esbuild": "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 ./",
@@ -166,7 +163,7 @@
"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",
"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",
+ "uninstall": "code --uninstall-extension .continue",
"reinstall": "rm -rf ./build && npm run package && npm run uninstall && npm run install-extension"
},
"devDependencies": {
@@ -179,6 +176,7 @@
"@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",