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