-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 936 Bytes
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "2hot4u",
"displayName": "2HOT4U | Official 4U full support 4 VSCode",
"description": "Official VSCode extension to highlight 4U lang.",
"version": "0.0.0",
"publisher": "LAPCoder",
"icon": "assets/4Ulogo.png",
"license": "MIT LICENSE. SEE IN LICENSE.txt",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"2hot4u",
"4u",
"language",
"snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/LAPCoder/2HOT4U"
},
"contributes": {
"languages": [
{
"id": "4u",
"aliases": [
"4U",
"4u"
],
"extensions": [
".4u"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "4u",
"path": "./snippets/snippets.json"
}
],
"grammars": [
{
"language": "4u",
"scopeName": "source.4u",
"path": "./syntaxes/4u.tmLanguage.json"
}
]
}
}