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": {
|
|
|
|
|
"vscode": "^1.22.0"
|
|
|
|
|
},
|
|
|
|
|
"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": {
|
|
|
|
|
"vscode:prepublish": "tsc -p ./",
|
|
|
|
|
"compile": "tsc -watch -p ./",
|
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
|
|
|
"test": "node ./node_modules/vscode/bin/test"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2018-11-08 10:39:34 -08:00
|
|
|
"@types/node": "^6.0.40",
|
2018-03-27 11:03:01 +02:00
|
|
|
"mocha": "^2.3.3",
|
2018-11-08 10:39:34 -08:00
|
|
|
"tslint": "^5.11.0",
|
|
|
|
|
"typescript": "^2.1.4",
|
|
|
|
|
"vscode": "^1.1.17"
|
2018-03-27 11:03:01 +02:00
|
|
|
}
|
|
|
|
|
}
|