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",
|
2019-08-06 14:03:07 +02:00
|
|
|
"enableProposedApi": "true",
|
2018-05-31 15:51:42 +02:00
|
|
|
"engines": {
|
2020-06-09 10:07:42 +02:00
|
|
|
"vscode": "^1.45.0"
|
2018-05-31 15:51:42 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onCommand:workbench.action.tasks.runTask"
|
|
|
|
|
],
|
2019-02-06 14:22:26 +01:00
|
|
|
"main": "./out/extension",
|
2018-05-31 15:51:42 +02:00
|
|
|
"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."
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-06 14:03:07 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "custombuildscript",
|
|
|
|
|
"required": [
|
|
|
|
|
"flavor"
|
|
|
|
|
],
|
|
|
|
|
"properties": {
|
|
|
|
|
"flavor": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"description": "The build flavor. Should be either '32' or '64'."
|
|
|
|
|
},
|
|
|
|
|
"flags": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"description": "Additional build flags."
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-31 15:51:42 +02:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2018-10-26 12:25:34 +02:00
|
|
|
"compile": "tsc -b",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -b -w"
|
2018-05-31 15:51:42 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-04-14 18:01:21 -07:00
|
|
|
"@types/node": "^12.12.0",
|
2020-05-29 13:12:13 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^3.0.2",
|
|
|
|
|
"@typescript-eslint/parser": "^3.0.2",
|
|
|
|
|
"eslint": "^7.1.0",
|
2020-05-29 14:11:10 -07:00
|
|
|
"typescript": "^3.9.4",
|
2020-06-09 10:07:42 +02:00
|
|
|
"@types/vscode": "^1.45.0"
|
2018-05-31 15:51:42 +02:00
|
|
|
}
|
2020-01-08 22:08:36 -08:00
|
|
|
}
|