2018-03-27 11:03:01 +02:00
|
|
|
{
|
|
|
|
|
"name": "progress-ts",
|
|
|
|
|
"displayName": "Notification Progress",
|
|
|
|
|
"description": "Show a long running operation in the notification area",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-03-27 11:03:01 +02:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode": "^1.32.0"
|
2018-03-27 11:03:01 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"*"
|
|
|
|
|
],
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.startTask",
|
|
|
|
|
"title": "Show Progress"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2018-12-17 10:21:13 -08:00
|
|
|
"main": "./out/extension.js",
|
2018-03-27 11:03:01 +02:00
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-30 18:28:15 -07:00
|
|
|
"compile": "tsc -p ./",
|
2019-05-10 14:43:54 -07:00
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
|
"lint": "tslint -p ./"
|
2018-03-27 11:03:01 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-04-14 18:01:21 -07:00
|
|
|
"@types/node": "^12.12.0",
|
2019-05-10 15:29:25 -07:00
|
|
|
"@types/vscode": "^1.32.0",
|
2020-04-14 18:05:51 -07:00
|
|
|
"tslint": "^5.19.0",
|
2020-04-14 18:01:21 -07:00
|
|
|
"typescript": "^3.8.3"
|
2018-03-27 11:03:01 +02:00
|
|
|
}
|
|
|
|
|
}
|