mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-04-22 19:02:10 +00:00
93 lines
2.2 KiB
JSON
93 lines
2.2 KiB
JSON
{
|
|
"name": "code-stats-vscode",
|
|
"displayName": "Code::Stats",
|
|
"description": "Code::Stats package for Visual Studio Code",
|
|
"version": "1.1.0",
|
|
"license": "MIT",
|
|
"publisher": "codestats",
|
|
"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/aviortheking/code-stats-vscode"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.43.2"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"maintainers": [
|
|
"Juha Ristolainen",
|
|
"Avior"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/src/code-stats",
|
|
"browser": "./out/browser",
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"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 --project tsconfig.json",
|
|
"build": "npm run build:native && npm run build:browser",
|
|
"build:browser": "node esbuild.js",
|
|
"build:native": "tsc --project tsconfig.json",
|
|
"dev": "tsc --project tsconfig.json -watch",
|
|
"test:browser": "vscode-test-web --extensionDevelopmentPath=. ."
|
|
},
|
|
"devDependencies": {
|
|
"@dzeio/config": "^1",
|
|
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
|
|
"@types/lodash.template": "^4",
|
|
"@types/node": "^16",
|
|
"@types/node-fetch": "^2",
|
|
"@types/vscode": "^1",
|
|
"@vscode/test-web": "^0.0.34",
|
|
"esbuild": "^0.17.3",
|
|
"typescript": "^4",
|
|
"vscode-test": "^1"
|
|
},
|
|
"dependencies": {
|
|
"lodash.template": "^4",
|
|
"node-fetch": "^2"
|
|
}
|
|
}
|