-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "Lisp",
"version": "0.1.11",
"publisher": "mattn",
"description": "Lisp syntax highlight",
"author": {
"name": "Yasuhiro Matsumoto (a.k.a mattn)"
},
"icon": "images/lisp.png",
"categories": ["Languages"],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mattn/vscode-lisp"
},
"dependencies": {},
"devDependencies": {
"typescript": "3.7.4",
"vscode": "1.1.36"
},
"engines": {
"vscode": "^0.10.10"
},
"contributes": {
"languages": [{
"id": "lisp",
"aliases": ["Lisp", "lisp"],
"extensions": [".lisp", ".cl", ".asd", ".ros", ".lsp", ".el", ".fnl"],
"configuration": "./Lisp.configuration.json"
}],
"grammars": [{
"language": "lisp",
"scopeName": "source.lisp",
"path": "./syntaxes/Lisp.tmLanguage"
},{
"scopeName": "markdown.lisp.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.superjs": "lisp"
}
}]
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/mattn/vscode-lisp/issues"
}
}