mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-04-22 10:52:13 +00:00
81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"name": "code-stats-vscode",
|
|
"displayName": "Code::Stats",
|
|
"description": "Code::Stats package for Visual Studio Code",
|
|
"version": "1.0.18",
|
|
"license": "MIT",
|
|
"publisher": "riussi",
|
|
"contributors": [
|
|
"Valentin Ivanov (https://github.com/scout119)",
|
|
"Paul Ryan (https://github.com/sharpred)",
|
|
"Mikko Ahlroth (https://github.com/Nicd)",
|
|
"Julien Stébenne <julien.stebenne@gmail.com> (https://github.com/thebird956)",
|
|
"Avior <contact@avior.me> (https://github.com/aviortheking)"
|
|
],
|
|
"icon": "logo.png",
|
|
"repository": {
|
|
"type": "gitlab",
|
|
"url": "https://gitlab.com/juha.ristolainen/code-stats-vscode"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.43.2"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"maintainers": [
|
|
"Juha Ristolainen",
|
|
"Avior"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/src/code-stats",
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "code-stats-vscode",
|
|
"properties": {
|
|
"codestats.apikey": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Code::Stats API key for this machine."
|
|
},
|
|
"codestats.apiurl": {
|
|
"type": "string",
|
|
"default": "https://codestats.net/api/",
|
|
"description": "Code::Stats API URL. Only change if you know what you are doing!"
|
|
},
|
|
"codestats.username": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Code::Stats User Name"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"title": "Add your Code::Stats API Key",
|
|
"command": "code-stats.api-key"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^13.9.8",
|
|
"@types/vscode": "^1.43.2",
|
|
"growl": "^1.10.5",
|
|
"mocha": "^7.1.1",
|
|
"typescript": "^3.8.3",
|
|
"vscode-test": "^1.5.2"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.19.2",
|
|
"lodash.template": "^4.5.0"
|
|
}
|
|
}
|