2024-04-04 09:59:43 +02:00
|
|
|
{
|
2024-04-06 00:30:47 +02:00
|
|
|
"name": "vscodestat",
|
|
|
|
"displayName": "vscodestat",
|
2024-07-04 14:12:03 +02:00
|
|
|
"version": "1.0.5",
|
2024-04-06 00:30:47 +02:00
|
|
|
"description": "",
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
2024-04-04 09:59:43 +02:00
|
|
|
],
|
2024-04-06 00:30:47 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/vscodestat.git"
|
|
|
|
},
|
|
|
|
"license": "ISC",
|
|
|
|
"author": "Raphael Piccolo",
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"lint": "eslint src --ext ts",
|
|
|
|
"pretest": "npm run compile && npm run lint",
|
|
|
|
"test": "vscode-test",
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
"watch": "tsc -watch -p ./"
|
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "vscodestat.helloWorld",
|
|
|
|
"title": "Hello World"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "vscodestat.setUrl",
|
|
|
|
"title": "setUrl"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "vscodestat.callUrl",
|
|
|
|
"title": "callUrl"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"configuration": {
|
|
|
|
"title": "vscodestat",
|
|
|
|
"properties": {
|
|
|
|
"vscodestat.url": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "https://example.com",
|
|
|
|
"description": "Specifies the url of the server to store the events"
|
|
|
|
}
|
|
|
|
}
|
2024-04-04 09:59:43 +02:00
|
|
|
}
|
2024-04-06 00:30:47 +02:00
|
|
|
},
|
|
|
|
"activationEvents": [
|
|
|
|
"onStartupFinished"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2024-06-22 12:11:12 +00:00
|
|
|
"@types/mocha": "^10.0.7",
|
2024-04-06 00:30:47 +02:00
|
|
|
"@types/node": "20.x",
|
2024-06-05 23:25:18 +00:00
|
|
|
"@types/vscode": "^1.90.0",
|
2024-06-17 18:39:21 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
|
|
"@typescript-eslint/parser": "^7.13.1",
|
2024-04-06 00:30:47 +02:00
|
|
|
"@vscode/test-cli": "^0.0.9",
|
2024-05-29 17:24:11 +00:00
|
|
|
"@vscode/test-electron": "^2.4.0",
|
2024-04-06 00:30:47 +02:00
|
|
|
"eslint": "^8.57.0",
|
2024-06-20 18:14:12 +00:00
|
|
|
"typescript": "^5.5.2"
|
2024-04-06 00:30:47 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-07-04 14:12:03 +02:00
|
|
|
"vscode": "^1.90.0"
|
2024-04-04 09:59:43 +02:00
|
|
|
}
|
2024-04-06 00:30:47 +02:00
|
|
|
}
|