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",
|
2021-06-11 17:10:40 -07:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
2018-05-31 15:51:42 +02:00
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.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": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2018-05-31 15:51:42 +02:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|