-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 864 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
34
35
36
37
38
39
40
41
42
43
{
"name": "messiscript-syntax",
"displayName": "MessiScript Syntax",
"description": "Language support for MessiScript",
"publisher": "GiovanniSCESP",
"version": "1.0.2",
"icon": "img/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/GiovanniSCESP/MessiScript-Syntax"
},
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"main": "./client/extension.js",
"contributes": {
"languages": [{
"id": "messi",
"aliases": [
"MessiScript",
"messi"
],
"extensions": [
".messi"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "messi",
"scopeName": "source.messi",
"path": "./syntaxes/messi.tmLanguage.json"
}],
"snippets": [{
"language": "messi",
"path": "./snippets/snippets.json"
}]
}
}