-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "laplace-syntax",
"publisher": "MasterLaplace",
"displayName": "Laplace Syntax",
"description": "Official Syntax support for the Laplace programming language.",
"version": "0.0.1",
"main": "src/extension.js",
"icon": "./images/laplace-logo.png",
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Programming Languages",
"Themes"
],
"contributes": {
"themes": [{
"label": "laplace-syntax",
"uiTheme": "vs-dark",
"path": "./themes/laplace-theme.json"
}],
"languages": [{
"id": "laplace",
"aliases": ["Laplace", "laplace"],
"extensions": [".lpl"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/laplace-logo.png",
"dark": "./images/laplace-logo.png"
}
}],
"grammars": [{
"language": "laplace",
"scopeName": "source.lpl",
"path": "./syntaxes/laplace.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/MasterLaplace/LaplaceSyntax-Code.git"
}
}