vscode-plugin/package.json
2019-01-22 12:01:23 -08:00

122 lines
3.8 KiB
JSON

{
"name": "kite",
"displayName": "kite",
"description": "Python coding assistant featuring AI-powered autocompletions, advanced function signatures, and instant documentation",
"version": "0.64.0",
"publisher": "kiteco",
"engines": {
"vscode": "^1.28.0"
},
"icon": "logo.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"author": {
"name": "Kite"
},
"repository": {
"type": "git",
"url": "https://github.com/kiteco/vscode-plugin.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./src/kite",
"contributes": {
"commands": [
{
"command": "kite.help",
"title": "Kite: Help"
},
{
"command": "kite.docs-at-cursor",
"title": "Kite: Docs At Cursor"
},
{
"command": "kite.open-settings",
"title": "Kite: Engine Settings"
},
{
"command": "kite.open-copilot",
"title": "Kite: Open Copilot"
}
],
"configuration": {
"type": "object",
"title": "Kite Configuration",
"properties": {
"kite.showWelcomeNotificationOnStartup": {
"type": "boolean",
"default": true,
"description": "Whether or not to show the Kite welcome notification on startup."
},
"kite.pollingInterval": {
"type": "integer",
"default": 5000,
"description": "Interval in milliseconds at which the Kite extension polls Kite Engine to get the status of the current file."
},
"kite.developerMode": {
"type": "boolean",
"default": false,
"description": "Displays JSON data used by a view and also updates sample.html with the last rendered HTML."
},
"kite.startKiteEngineOnStartup": {
"type": "boolean",
"default": true,
"description": "Automatically start Kite Engine on editor startup if it's not already running."
},
"kite.loggingLevel": {
"type": "string",
"default": "info",
"enum": [
"silly",
"verbose",
"debug",
"info",
"warning",
"error"
],
"description": "The verbosity level of Kite's logs."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"analytics-node": "^3.1.1",
"atob": "^2.1.2",
"formidable": "^1.1.1",
"getmac": "^1.2.1",
"kite-api": "^2.3.0",
"kite-connector": "^2.1.0",
"kite-installer": "^3.0.2",
"md5": "^2.2.0",
"opn": "^5.0.0",
"rollbar": "^2.3.8",
"tiny-relative-date": "^1.3.0"
},
"devDependencies": {
"@atom/temp": "^0.8.4",
"fs-plus": "^3.0.2",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"editors-json-tests": "git://github.com/kiteco/editors-json-tests.git#whitelist-removal",
"eslint": "^3.6.0",
"expect.js": "^0.3.1",
"jsdom": "^10",
"jsdom-global": "^3",
"mocha": "^5.2.0",
"sinon": "^2.3.5",
"typescript": "^2.0.3",
"vscode": "^1.1.22",
"widjet-test-utils": "^1.8.0"
}
}