mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
* chore: bump electron@17.0.0 * Revert "chore: revert to electron@13 (#143851)" This reverts commitdf645f1450. * chore: bump electron@17.1.0 * Revert "ci: fix build with latest node-gyp" This reverts commitc3e948aa30. * chore: revert ci changes for node v16 * chore: update yarn.lock * chore: bump electron@17.1.1
78 lines
1.6 KiB
JSON
78 lines
1.6 KiB
JSON
{
|
|
"name": "gulp",
|
|
"publisher": "vscode",
|
|
"description": "%description%",
|
|
"displayName": "%displayName%",
|
|
"version": "1.0.0",
|
|
"icon": "images/gulp.png",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:gulp",
|
|
"watch": "gulp watch-extension:gulp"
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "16.x"
|
|
},
|
|
"main": "./out/main",
|
|
"activationEvents": [
|
|
"onTaskType:gulp"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"contributes": {
|
|
"configuration": {
|
|
"id": "gulp",
|
|
"type": "object",
|
|
"title": "Gulp",
|
|
"properties": {
|
|
"gulp.autoDetect": {
|
|
"scope": "application",
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"on"
|
|
],
|
|
"default": "off",
|
|
"description": "%config.gulp.autoDetect%"
|
|
}
|
|
}
|
|
},
|
|
"taskDefinitions": [
|
|
{
|
|
"type": "gulp",
|
|
"required": [
|
|
"task"
|
|
],
|
|
"properties": {
|
|
"task": {
|
|
"type": "string",
|
|
"description": "%gulp.taskDefinition.type.description%"
|
|
},
|
|
"file": {
|
|
"type": "string",
|
|
"description": "%gulp.taskDefinition.file.description%"
|
|
}
|
|
},
|
|
"when": "shellExecutionSupported"
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|