Files
vscode-extension-samples/task-provider-sample/package.json

73 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "task-provider-samples",
"displayName": "Task Provider Samples",
"description": "Samples for VSCode's view API",
"version": "0.0.1",
"publisher": "vscode-samples",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.tasks.runTask"
],
"main": "./out/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."
}
}
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."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
2018-10-26 12:25:34 +02:00
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^12.12.0",
2021-03-02 16:02:01 -08:00
"@types/vscode": "^1.45.0",
2021-03-02 15:59:42 -08:00
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
2021-07-13 18:48:28 -07:00
"typescript": "^4.3.5"
}
}