eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
67 lines
1.4 KiB
JSON
67 lines
1.4 KiB
JSON
{
|
|
"name": "jake",
|
|
"publisher": "vscode",
|
|
"description": "%description%",
|
|
"displayName": "%displayName%",
|
|
"icon": "images/cowboy_hat.png",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:jake",
|
|
"watch": "gulp watch-extension:jake"
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.19.9"
|
|
},
|
|
"main": "./out/main",
|
|
"activationEvents": [
|
|
"onCommand:workbench.action.tasks.runTask"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"id": "jake",
|
|
"type": "object",
|
|
"title": "Jake",
|
|
"properties": {
|
|
"jake.autoDetect": {
|
|
"scope": "resource",
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"on"
|
|
],
|
|
"default": "on",
|
|
"description": "%config.jake.autoDetect%"
|
|
}
|
|
}
|
|
},
|
|
"taskDefinitions": [
|
|
{
|
|
"type": "jake",
|
|
"required": [
|
|
"task"
|
|
],
|
|
"properties": {
|
|
"task": {
|
|
"type": "string",
|
|
"description": "%jake.taskDefinition.type.description%"
|
|
},
|
|
"file": {
|
|
"type": "string",
|
|
"description": "%jake.taskDefinition.file.description%"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|