vscodestat/package.json

73 lines
1.9 KiB
JSON
Raw Normal View History

2024-04-04 09:59:43 +02:00
{
2024-04-06 00:30:47 +02:00
"name": "vscodestat",
"displayName": "vscodestat",
2024-11-26 03:54:31 +00:00
"version": "1.1.45",
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",
2024-10-08 16:02:22 +02:00
"url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/vscodestat.git"
2024-04-06 00:30:47 +02:00
},
"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": {
"@types/mocha": "^10.0.10",
2024-07-31 23:14:20 +02:00
"@types/node": "22.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
2024-07-31 23:14:20 +02:00
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
2024-04-06 00:30:47 +02:00
},
"engines": {
"vscode": "^1.95.0"
2024-07-04 14:48:15 +02:00
},
2024-07-05 15:16:09 +02:00
"icon": "icon.png",
2024-07-04 14:48:15 +02:00
"extensionKind": [
"ui",
"workspace"
]
2024-10-30 03:37:10 +00:00
}