2022-10-19 10:22:49 -04:00
|
|
|
{
|
|
|
|
|
"name": "telemetry-sample",
|
|
|
|
|
"displayName": "telemetry-sample",
|
|
|
|
|
"description": "Sample showing how to use Telemetry API",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
|
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples",
|
|
|
|
|
"engines": {
|
2023-03-30 13:00:51 -07:00
|
|
|
"vscode": "^1.76.0"
|
2022-10-19 10:22:49 -04:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.logEvent",
|
|
|
|
|
"title": "Log Telemetry Event"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.logException",
|
|
|
|
|
"title": "Log Telemetry Exception"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
|
"watch": "tsc -watch -p ./",
|
2023-06-05 14:15:49 -07:00
|
|
|
"download-api": "dts dev",
|
|
|
|
|
"postdownload-api": "dts main",
|
2022-10-19 10:22:49 -04:00
|
|
|
"postinstall": "npm run download-api"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-06-05 14:34:14 -07:00
|
|
|
"@types/node": "^16.18.34",
|
2023-09-13 14:45:34 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
|
|
|
"@typescript-eslint/parser": "^6.7.0",
|
2022-10-19 10:22:49 -04:00
|
|
|
"eslint": "^8.25.0",
|
2024-03-14 16:47:53 -07:00
|
|
|
"typescript": "^5.4.2",
|
2023-06-05 14:15:49 -07:00
|
|
|
"@vscode/dts": "^0.4.0"
|
2022-10-19 10:22:49 -04:00
|
|
|
}
|
|
|
|
|
}
|