Files
wehub-resource-sync fdedcf53bb
Basic checks / Compilation, Unit and Integration Tests (push) Has been cancelled
Basic checks / Hygiene and Layering (push) Has been cancelled
Basic checks / Warm up node modules cache (push) Has been cancelled
Check Format and Lint / lint-and-format (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:36:35 +08:00

81 lines
1.8 KiB
JSON

{
"name": "grunt",
"publisher": "vscode",
"description": "Extension to add Grunt capabilities to VS Code.",
"displayName": "Grunt support for VS Code",
"version": "1.0.0",
"private": true,
"icon": "images/grunt.png",
"license": "MIT",
"engines": {
"vscode": "*"
},
"categories": [
"Other"
],
"scripts": {
"compile": "gulp compile-extension:grunt",
"watch": "gulp watch-extension:grunt"
},
"dependencies": {},
"devDependencies": {
"@types/node": "20.x"
},
"main": "./out/main",
"activationEvents": [
"onTaskType:grunt"
],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"configuration": {
"id": "grunt",
"type": "object",
"title": "Grunt",
"properties": {
"grunt.autoDetect": {
"scope": "application",
"type": "string",
"enum": [
"off",
"on"
],
"default": "off",
"description": "%config.grunt.autoDetect%"
}
}
},
"taskDefinitions": [
{
"type": "grunt",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "%grunt.taskDefinition.type.description%"
},
"args": {
"type": "array",
"description": "%grunt.taskDefinition.args.description%"
},
"file": {
"type": "string",
"description": "%grunt.taskDefinition.file.description%"
}
},
"when": "shellExecutionSupported"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}