-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "reabank-syntax-highlighting",
"displayName": "Reabank Syntax Highlighting",
"description": "Syntax highlighting for Reabank files",
"version": "1.1.0",
"engines": {
"vscode": "^1.56.0"
},
"license": "ISC",
"publisher": "adalinesimonian",
"icon": "icon.png",
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"author": {
"name": "Adaline Simonian",
"email": "[email protected]",
"url": "https://github.com/adalinesimonian"
},
"repository": {
"type": "git",
"url": "https://github.com/adalinesimonian/reabank-syntax-highlighting.git"
},
"homepage": "https://github.com/adalinesimonian/reaticulate-number-banks#readme",
"categories": [
"Programming Languages"
],
"keywords": [
"reaper",
"reaticulate",
"daw",
"audio production"
],
"contributes": {
"languages": [{
"id": "reabank",
"aliases": ["Reabank", "reabank"],
"extensions": [".reabank"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "reabank",
"scopeName": "source.reabank",
"path": "./syntaxes/reabank.tmLanguage.json"
}]
}
}