-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 837 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "json5",
"displayName": "JSON5",
"description": "Syntax highlighting and formatter (soon) for JSON5",
"version": "0.0.1",
"license": "MPL-2.0",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Programming Languages",
"Other"
],
"contributes": {
"languages": [
{
"id": "json5",
"icon": {
"light": "./icons/json5-light.svg",
"dark": "./icons/json5-dark.svg"
},
"aliases": [
"JSON5",
"json5"
],
"extensions": [
".json5",
".JSON5"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "json5",
"scopeName": "source.json5",
"path": "./syntaxes/json5.tmLanguage.json"
}
]
}
}