2018-05-31 15:51:42 +02:00
|
|
|
{
|
|
|
|
|
"name": "task-provider-samples",
|
|
|
|
|
"displayName": "Task Provider Samples",
|
|
|
|
|
"description": "Samples for VSCode's view API",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-05-31 15:51:42 +02:00
|
|
|
"engines": {
|
2018-09-04 14:47:27 +02:00
|
|
|
"vscode": "^1.26.0"
|
2018-05-31 15:51:42 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onCommand:workbench.action.tasks.runTask"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/src/extension",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"taskDefinitions": [
|
|
|
|
|
{
|
|
|
|
|
"type": "rake",
|
|
|
|
|
"required": [
|
|
|
|
|
"task"
|
|
|
|
|
],
|
|
|
|
|
"properties": {
|
|
|
|
|
"task": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"description": "The Rake task to customize"
|
|
|
|
|
},
|
|
|
|
|
"file": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"description": "The Rake file that provides the task. Can be omitted."
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "tsc -p ./",
|
2018-10-26 12:25:34 +02:00
|
|
|
"compile": "tsc -b",
|
|
|
|
|
"watch": "tsc -b -w",
|
2018-05-31 15:51:42 +02:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2018-10-26 12:25:34 +02:00
|
|
|
"@types/node": "^8.0.0",
|
|
|
|
|
"tslint": "^5.11.0",
|
|
|
|
|
"typescript": "^3.1.3",
|
|
|
|
|
"vscode": "^1.1.17"
|
2018-05-31 15:51:42 +02:00
|
|
|
}
|
|
|
|
|
}
|