Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/extension-editing/package.json
3290 views
1
{
2
"name": "extension-editing",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "^1.4.0"
10
},
11
"icon": "images/icon.png",
12
"activationEvents": [
13
"onLanguage:json",
14
"onLanguage:markdown"
15
],
16
"main": "./out/extensionEditingMain",
17
"browser": "./dist/browser/extensionEditingBrowserMain",
18
"capabilities": {
19
"virtualWorkspaces": true,
20
"untrustedWorkspaces": {
21
"supported": true
22
}
23
},
24
"scripts": {
25
"compile": "gulp compile-extension:extension-editing",
26
"watch": "gulp watch-extension:extension-editing"
27
},
28
"dependencies": {
29
"jsonc-parser": "^3.2.0",
30
"markdown-it": "^12.3.2",
31
"parse5": "^3.0.2"
32
},
33
"contributes": {
34
"jsonValidation": [
35
{
36
"fileMatch": "package.json",
37
"url": "vscode://schemas/vscode-extensions"
38
},
39
{
40
"fileMatch": "*language-configuration.json",
41
"url": "vscode://schemas/language-configuration"
42
},
43
{
44
"fileMatch": [
45
"*icon-theme.json",
46
"!*product-icon-theme.json"
47
],
48
"url": "vscode://schemas/icon-theme"
49
},
50
{
51
"fileMatch": "*product-icon-theme.json",
52
"url": "vscode://schemas/product-icon-theme"
53
},
54
{
55
"fileMatch": "*color-theme.json",
56
"url": "vscode://schemas/color-theme"
57
}
58
],
59
"languages": [
60
{
61
"id": "ignore",
62
"filenames": [
63
".vscodeignore"
64
]
65
}
66
]
67
},
68
"devDependencies": {
69
"@types/markdown-it": "0.0.2",
70
"@types/node": "22.x"
71
},
72
"repository": {
73
"type": "git",
74
"url": "https://github.com/microsoft/vscode.git"
75
}
76
}
77
78