-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 893 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
{
"name": "pari-gp-lang",
"displayName": "PARI/GP",
"description": "Syntax highlighting for PARI/GP",
"icon": "icons/Logo_PARI-GP_Couleurs_L300px.png",
"version": "1.0.0",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages"
],
"publisher": "David Ayotte",
"license": "GPL-3.0",
"homepage": "https://github.com/DavidAyotte/pari-gp-lang",
"repository": {
"type": "git",
"url": "https://github.com/DavidAyotte/pari-gp-lang"
},
"contributes": {
"languages": [{
"id": "gp",
"aliases": ["PARI/GP", "gp"],
"extensions": [".gp"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "gp",
"scopeName": "source.gp",
"path": "./syntaxes/gp.tmLanguage.json"
}]
}
}