Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/json/package.json
3292 views
1
{
2
"name": "json",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "0.10.x"
10
},
11
"scripts": {
12
"update-grammar": "node ./build/update-grammars.js"
13
},
14
"categories": [
15
"Programming Languages"
16
],
17
"contributes": {
18
"languages": [
19
{
20
"id": "json",
21
"aliases": [
22
"JSON",
23
"json"
24
],
25
"extensions": [
26
".json",
27
".bowerrc",
28
".jscsrc",
29
".webmanifest",
30
".js.map",
31
".css.map",
32
".ts.map",
33
".har",
34
".jslintrc",
35
".jsonld",
36
".geojson",
37
".ipynb",
38
".vuerc"
39
],
40
"filenames": [
41
"composer.lock",
42
".watchmanconfig"
43
],
44
"mimetypes": [
45
"application/json",
46
"application/manifest+json"
47
],
48
"configuration": "./language-configuration.json"
49
},
50
{
51
"id": "jsonc",
52
"aliases": [
53
"JSON with Comments"
54
],
55
"extensions": [
56
".jsonc",
57
".eslintrc",
58
".eslintrc.json",
59
".jsfmtrc",
60
".jshintrc",
61
".swcrc",
62
".hintrc",
63
".babelrc",
64
".toolset.jsonc"
65
],
66
"filenames": [
67
"babel.config.json",
68
"bun.lock",
69
".babelrc.json",
70
".ember-cli",
71
"typedoc.json"
72
],
73
"configuration": "./language-configuration.json"
74
},
75
{
76
"id": "jsonl",
77
"aliases": [
78
"JSON Lines"
79
],
80
"extensions": [
81
".jsonl",
82
".ndjson"
83
],
84
"filenames": [],
85
"configuration": "./language-configuration.json"
86
},
87
{
88
"id": "snippets",
89
"aliases": [
90
"Code Snippets"
91
],
92
"extensions": [
93
".code-snippets"
94
],
95
"filenamePatterns": [
96
"**/User/snippets/*.json",
97
"**/User/profiles/*/snippets/*.json",
98
"**/snippets*.json"
99
],
100
"configuration": "./language-configuration.json"
101
}
102
],
103
"grammars": [
104
{
105
"language": "json",
106
"scopeName": "source.json",
107
"path": "./syntaxes/JSON.tmLanguage.json"
108
},
109
{
110
"language": "jsonc",
111
"scopeName": "source.json.comments",
112
"path": "./syntaxes/JSONC.tmLanguage.json"
113
},
114
{
115
"language": "jsonl",
116
"scopeName": "source.json.lines",
117
"path": "./syntaxes/JSONL.tmLanguage.json"
118
},
119
{
120
"language": "snippets",
121
"scopeName": "source.json.comments.snippets",
122
"path": "./syntaxes/snippets.tmLanguage.json"
123
}
124
]
125
},
126
"repository": {
127
"type": "git",
128
"url": "https://github.com/microsoft/vscode.git"
129
}
130
}
131
132