-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "vscode-common-lisp",
"publisher": "blackbrane",
"displayName": "Black Metal Common Lisp",
"description": "The Grim and True VSCode extension for Extreme Lisp Hackers",
"version": "0.0.4",
"preview": true,
"license": "See LICENSE",
"icon": "BMCL-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/blackbranesys/vscode-language-common-lisp.git"
},
"keywords": ["lisp", "commonlisp", "lispworks", "repl", "semantic"],
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "lisp",
"aliases": ["Common Lisp", "lisp"],
"extensions": [".lisp",".lsp",".cl",".lisp-expr",".asd",".ros"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "lisp",
"scopeName": "source.lisp",
"path": "./syntaxes/Common Lisp.tmLanguage"
}]
}
}