forked from PierreMarchand20/vscode-FreeFEM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"author": "Pierre Marchand",
"bugs": {
"url": "https://github.com/PierreMarchand20/vscode-FreeFEM/issues/"
},
"name": "vscode-freefem",
"displayName": "vscode-FreeFEM",
"description": "FreeFEM language support in Visual Studio Code",
"version": "2.0.9",
"keywords": [
"FreeFEM",
"language"
],
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "freefem",
"aliases": [
"FreeFEM",
"freefem"
],
"extensions": [
".edp",
".idp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "freefem",
"scopeName": "source.edp",
"path": "./syntaxes/freefem.tmLanguage.json"
}
]
},
"icon": "logos/logo.png",
"homepage": "https://freefem.org",
"license": "MIT",
"publisher": "Pierre-Marchand",
"repository": {
"type": "git",
"url": "https://github.com/PierreMarchand20/vscode-FreeFEM.git"
}
}