This repository was archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "june-syntax",
"displayName": "June Syntax",
"version": "0.6.1",
"description": "Improved June syntax highlighting",
"publisher": "dustypomerleau",
"homepage": "https://github.com/dustypomerleau/rust-syntax",
"author": {
"name": "jt"
},
"repository": {
"type": "git",
"url": "https://github.com/dustypomerleau/rust-syntax"
},
"bugs": {
"url": "https://github.com/dustypomerleau/rust-syntax/issues"
},
"license": "Please see LICENSE.txt",
"galleryBanner": {
"color": "#292d3e",
"theme": "dark"
},
"icon": "images/icon.png",
"categories": [
"Programming Languages"
],
"keywords": [
"june",
"language",
"syntax",
"grammar",
"highlighting"
],
"contributes": {
"languages": [
{
"id": "june",
"aliases": [
"June"
],
"extensions": [
".june"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "june",
"scopeName": "source.june",
"path": "./syntaxes/june.tmLanguage.json"
}
]
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-yaml": "^2.0.4",
"js-yaml": "^4.1.0",
"vsce": "^2.9.2",
"vscode-tmgrammar-test": "^0.1.1"
},
"engines": {
"vscode": "^1.44.0"
}
}