-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.25 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
52
53
54
55
56
57
58
59
60
{
"name": "mavka-vscode",
"displayName": "Мавка",
"description": "Підтримка Мавки у VSCode",
"publisher": "mavka",
"version": "0.0.15",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Programming Languages", "Snippets"
],
"repository": {
"url": "https://github.com/mavka-ukr/vscode"
},
"contributes": {
"languages": [
{
"id": "мавка",
"aliases": [
"Мавка",
"мавка"
],
"extensions": [
".м"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/icon-light.png",
"dark": "./icons/icon-dark.png"
}
}
],
"grammars": [
{
"language": "мавка",
"scopeName": "source.мавка",
"path": "./syntaxes/mavka.tmLanguage.json"
}
],
"snippets": [
{
"language": "мавка",
"path": "./snippets/mavka.snippets.json"
}
]
},
"__metadata": {
"id": "8c2adcf7-0af5-47bc-861f-5a424d31fe53",
"publisherId": "600a6499-8063-4adf-92b1-b5b41744b726",
"publisherDisplayName": "Мавка",
"targetPlatform": "undefined",
"isApplicationScoped": false,
"updated": true,
"isPreReleaseVersion": false,
"installedTimestamp": 1678613395515,
"preRelease": false
}
}