-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 914 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
{
"name": "lispbm-language-support",
"displayName": "lispBM language support",
"description": "Adds support for the lispBM language. Don't put to much faith into this project.",
"publisher": "rasmus-soderhielm",
"version": "0.3.4",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Programming Languages"
],
"icon": "images/icon.png",
"contributes": {
"languages": [
{
"id": "lispbm",
"aliases": [
"LispBM",
"lispbm"
],
"extensions": [
".lisp",
".lispbm"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "images/icon.png",
"dark": "images/icon.png"
}
}
],
"grammars": [
{
"language": "lispbm",
"scopeName": "source.lispbm",
"path": "./syntaxes/lispbm.tmLanguage.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/laxsjo/lispbm-language-support.git"
}
}