Files
vscode-extension-samples/progress-sample/package.json

46 lines
979 B
JSON
Raw Normal View History

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",
"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": {
"@types/node": "^6.0.40",
2018-03-27 11:03:01 +02:00
"mocha": "^2.3.3",
"tslint": "^5.11.0",
"typescript": "^2.1.4",
"vscode": "^1.1.17"
2018-03-27 11:03:01 +02:00
}
}