vscode/extensions/grunt/package.json
Robo df645f1450
chore: revert to electron@13 (#143851)
* Revert "chore: update to electron 16 (#137241)"

This reverts commit 01df559c18.
This reverts commit 46301339b7

* ci: fix remote compiler for sdl-scan

* chore: fix remote/.yarnrc

* chore: fix build/npm/postinstall.js

* chore: rm crash reporter from shared process

* chore: rm crash reporter from ext host

* chore: fix build/lib/layersChecker.ts

* :chore: preserve some more changes

* fix tests

Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
2022-02-24 17:49:49 +01:00

82 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",
"icon": "images/grunt.png",
"license": "MIT",
"engines": {
"vscode": "*"
},
"categories": [
"Other"
],
"scripts": {
"compile": "gulp compile-extension:grunt",
"watch": "gulp watch-extension:grunt"
},
"dependencies": {
"vscode-nls": "^4.0.0"
},
"devDependencies": {
"@types/node": "14.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"
}
}