Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/configuration-editing/package.json
3291 views
1
{
2
"name": "configuration-editing",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "^1.0.0"
10
},
11
"icon": "images/icon.png",
12
"activationEvents": [
13
"onProfile",
14
"onProfile:github",
15
"onLanguage:json",
16
"onLanguage:jsonc"
17
],
18
"enabledApiProposals": [
19
"profileContentHandlers"
20
],
21
"main": "./out/configurationEditingMain",
22
"browser": "./dist/browser/configurationEditingMain",
23
"scripts": {
24
"compile": "gulp compile-extension:configuration-editing",
25
"watch": "gulp watch-extension:configuration-editing"
26
},
27
"dependencies": {
28
"@octokit/rest": "^21.1.1",
29
"jsonc-parser": "^3.2.0",
30
"tunnel": "^0.0.6"
31
},
32
"capabilities": {
33
"virtualWorkspaces": true,
34
"untrustedWorkspaces": {
35
"supported": true
36
}
37
},
38
"contributes": {
39
"languages": [
40
{
41
"id": "jsonc",
42
"extensions": [
43
".code-workspace",
44
"language-configuration.json",
45
"icon-theme.json",
46
"color-theme.json"
47
],
48
"filenames": [
49
"settings.json",
50
"launch.json",
51
"tasks.json",
52
"mcp.json",
53
"keybindings.json",
54
"extensions.json",
55
"argv.json",
56
"profiles.json",
57
"devcontainer.json",
58
".devcontainer.json"
59
]
60
},
61
{
62
"id": "json",
63
"extensions": [
64
".code-profile"
65
]
66
}
67
],
68
"jsonValidation": [
69
{
70
"fileMatch": "vscode://defaultsettings/keybindings.json",
71
"url": "vscode://schemas/keybindings"
72
},
73
{
74
"fileMatch": "%APP_SETTINGS_HOME%/keybindings.json",
75
"url": "vscode://schemas/keybindings"
76
},
77
{
78
"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/keybindings.json",
79
"url": "vscode://schemas/keybindings"
80
},
81
{
82
"fileMatch": "vscode://defaultsettings/*.json",
83
"url": "vscode://schemas/settings/default"
84
},
85
{
86
"fileMatch": "%APP_SETTINGS_HOME%/settings.json",
87
"url": "vscode://schemas/settings/user"
88
},
89
{
90
"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/settings.json",
91
"url": "vscode://schemas/settings/profile"
92
},
93
{
94
"fileMatch": "%MACHINE_SETTINGS_HOME%/settings.json",
95
"url": "vscode://schemas/settings/machine"
96
},
97
{
98
"fileMatch": "%APP_WORKSPACES_HOME%/*/workspace.json",
99
"url": "vscode://schemas/workspaceConfig"
100
},
101
{
102
"fileMatch": "**/*.code-workspace",
103
"url": "vscode://schemas/workspaceConfig"
104
},
105
{
106
"fileMatch": "**/argv.json",
107
"url": "vscode://schemas/argv"
108
},
109
{
110
"fileMatch": "/.vscode/settings.json",
111
"url": "vscode://schemas/settings/folder"
112
},
113
{
114
"fileMatch": "/.vscode/launch.json",
115
"url": "vscode://schemas/launch"
116
},
117
{
118
"fileMatch": "/.vscode/tasks.json",
119
"url": "vscode://schemas/tasks"
120
},
121
{
122
"fileMatch": "/.vscode/mcp.json",
123
"url": "vscode://schemas/mcp"
124
},
125
{
126
"fileMatch": "%APP_SETTINGS_HOME%/tasks.json",
127
"url": "vscode://schemas/tasks"
128
},
129
{
130
"fileMatch": "%APP_SETTINGS_HOME%/snippets/*.json",
131
"url": "vscode://schemas/snippets"
132
},
133
{
134
"fileMatch": "%APP_SETTINGS_HOME%/prompts/*.toolsets.jsonc",
135
"url": "vscode://schemas/toolsets"
136
},
137
{
138
"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/snippets/.json",
139
"url": "vscode://schemas/snippets"
140
},
141
{
142
"fileMatch": "%APP_SETTINGS_HOME%/sync/snippets/preview/*.json",
143
"url": "vscode://schemas/snippets"
144
},
145
{
146
"fileMatch": "**/*.code-snippets",
147
"url": "vscode://schemas/global-snippets"
148
},
149
{
150
"fileMatch": "/.vscode/extensions.json",
151
"url": "vscode://schemas/extensions"
152
},
153
{
154
"fileMatch": "devcontainer.json",
155
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json"
156
},
157
{
158
"fileMatch": ".devcontainer.json",
159
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json"
160
},
161
{
162
"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/nameConfigs/*.json",
163
"url": "./schemas/attachContainer.schema.json"
164
},
165
{
166
"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/imageConfigs/*.json",
167
"url": "./schemas/attachContainer.schema.json"
168
},
169
{
170
"fileMatch": "**/quality/*/product.json",
171
"url": "vscode://schemas/vscode-product"
172
}
173
]
174
},
175
"devDependencies": {
176
"@types/node": "22.x"
177
},
178
"repository": {
179
"type": "git",
180
"url": "https://github.com/microsoft/vscode.git"
181
}
182
}
183
184