forked from damirka/move-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.37 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
{
"name": "move-syntax",
"version": "0.4.6",
"description": "Move syntax for VSCode",
"publisher": "damirka",
"displayName": "Move syntax",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"scripts": {},
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:move"
],
"main": "./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"
}
]
},
"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"
],
"author": "Damir Shamanaev <[email protected]>",
"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"
}
}