-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "hypr-syntax",
"displayName": "Hypr Syntax and Grammar Support",
"description": "Visual Studio Code Hypr/HyprLive language syntax highlighting and grammar support",
"version": "0.1.3",
"publisher": "temu4",
"author": {
"name": "Artem Vorobiov",
"email": "artem.vorobjov@gmail.com"
},
"homepage": "https://github.com/Temu4/hypr-syntax-vscode",
"repository": {
"type": "git",
"url": "https://github.com/Temu4/hypr-syntax-vscode"
},
"bugs": {
"url": "https://github.com/Temu4/hypr-syntax-vscode/issues"
},
"engines": {
"vscode": "^1.46.0"
},
"icon": "images/icon-hypr.png",
"galleryBanner": {
"color": "#f66f62",
"theme": "dark"
},
"keywords": [
"grammar",
"syntax",
"language",
"hypr"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "hypr",
"aliases": ["Hypr", "hypr", "HyprLive"],
"extensions": [".hypr", ".hypr.live"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "hypr",
"scopeName": "text.html.hypr",
"path": "./syntaxes/hypr.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"source.js": "javascript"
}
}]
},
"scripts": {
"package": "vsce package",
"local": "code --install-extension hypr-syntax-0.1.3.vsix"
}
}