-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "move-syntax",
"version": "0.7.1",
"description": "Move syntax for VSCode",
"publisher": "damirka",
"displayName": "Move syntax",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"engines": {
"vscode": "^1.75.0"
},
"main": "./extension.js",
"browser": "./extension.js",
"contributes": {
"languages": [
{
"id": "move",
"aliases": [
"Move"
],
"extensions": [
".move"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "move",
"scopeName": "source.move",
"path": "./syntaxes/move.tmLanguage.json"
},
{
"scopeName": "text.html.markdown.move.codeblock",
"path": "./syntaxes/move-markdown-injection.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.move": "move"
}
},
{
"scopeName": "text.html.mdx.move.codeblock",
"path": "./syntaxes/move-mdx-injection.json",
"injectTo": [
"source.mdx"
],
"embeddedLanguages": {
"meta.embedded.block.move": "move"
}
}
]
},
"icon": "img/logo.256.png",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/damirka/vscode-move-syntax.git"
},
"keywords": [
"libra",
"move",
"ide",
"move syntax",
"move ide",
"move-ide",
"libra-ide",
"diem",
"sui",
"starcoin",
"aptos"
],
"author": "Damir Shamanaev <damirka.ru@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/damirka/vscode-move-syntax/issues"
},
"homepage": "https://github.com/damirka/vscode-move-syntax#readme",
"__metadata": {
"id": "079cf480-3f72-452f-b128-8b8038c252fb",
"publisherId": "a21ee11b-2c64-42b1-a3d1-78e5ee8191a6",
"publisherDisplayName": "Damir Shamanaev"
}
}