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