Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/grunt/package.json
3290 views
1
{
2
"name": "grunt",
3
"publisher": "vscode",
4
"description": "Extension to add Grunt capabilities to VS Code.",
5
"displayName": "Grunt support for VS Code",
6
"version": "1.0.0",
7
"private": true,
8
"icon": "images/grunt.png",
9
"license": "MIT",
10
"engines": {
11
"vscode": "*"
12
},
13
"categories": [
14
"Other"
15
],
16
"scripts": {
17
"compile": "gulp compile-extension:grunt",
18
"watch": "gulp watch-extension:grunt"
19
},
20
"dependencies": {},
21
"devDependencies": {
22
"@types/node": "22.x"
23
},
24
"main": "./out/main",
25
"activationEvents": [
26
"onTaskType:grunt"
27
],
28
"capabilities": {
29
"virtualWorkspaces": false,
30
"untrustedWorkspaces": {
31
"supported": true
32
}
33
},
34
"contributes": {
35
"configuration": {
36
"id": "grunt",
37
"type": "object",
38
"title": "Grunt",
39
"properties": {
40
"grunt.autoDetect": {
41
"scope": "application",
42
"type": "string",
43
"enum": [
44
"off",
45
"on"
46
],
47
"default": "off",
48
"description": "%config.grunt.autoDetect%"
49
}
50
}
51
},
52
"taskDefinitions": [
53
{
54
"type": "grunt",
55
"required": [
56
"task"
57
],
58
"properties": {
59
"task": {
60
"type": "string",
61
"description": "%grunt.taskDefinition.type.description%"
62
},
63
"args": {
64
"type": "array",
65
"description": "%grunt.taskDefinition.args.description%"
66
},
67
"file": {
68
"type": "string",
69
"description": "%grunt.taskDefinition.file.description%"
70
}
71
},
72
"when": "shellExecutionSupported"
73
}
74
]
75
},
76
"repository": {
77
"type": "git",
78
"url": "https://github.com/microsoft/vscode.git"
79
}
80
}
81
82