This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
forked from pontem-network/vscode-move-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
238 lines (238 loc) · 5.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"name": "starcoin-ide",
"version": "0.4.2",
"description": "Starcoin Contract Development Environment for VSCode",
"publisher": "starcoinorg",
"displayName": "Starcoin IDE",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"scripts": {
"postinstall": "./download-binaries",
"vscode:prepublish": "npm run compile",
"vscode:package": "npx vsce package",
"vscode:publish": "npx vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"release": "standard-version"
},
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:move"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "move",
"aliases": [
"Move"
],
"extensions": [
".move"
],
"configuration": "./language-configuration.json"
},
{
"id": "mvir",
"aliases": [
"MVIR",
"mvir",
"Move IR"
],
"extensions": [
".mvir"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "move",
"scopeName": "source.move",
"path": "./syntaxes/move.tmLanguage.json"
},
{
"language": "mvir",
"scopeName": "source.mvir",
"path": "./syntaxes/mvir.tmLanguage.json"
}
],
"commands": [
{
"command": "move.compile",
"title": "Move: Compile"
},
{
"command": "move.run",
"title": "Move: Run Script"
},
{
"command": "move.dry-run",
"title": "Move: Dry-Run Script"
},
{
"command": "move.deploy",
"title": "Move: Deploy Module"
}
],
"menus": {
"commandPalette": [
{
"command": "move.compile",
"when": "editorLangId == move"
},
{
"command": "move.run",
"when": "editorLangId == move"
},
{
"command": "move.dry-run",
"when": "editorLangId == move"
},
{
"command": "move.deploy",
"when": "editorLangId == move"
}
]
},
"configuration": {
"title": "Starcoin IDE",
"properties": {
"move.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
"description": "Trace requests to the move-ls (this is usually overly verbose and not recommended for regular users)"
},
"move.configPath": {
"type": "string",
"default": ".mvconfig.json",
"description": "When set and file is present, json configuration will be used instead of editor config"
},
"move.blockchain": {
"type": "string",
"enum": [
"libra",
"starcoin"
],
"default": "starcoin",
"description": "Move compiler and dialect to use: Starcoin or Libra",
"scope": "resource"
},
"move.compilerDir": {
"type": "string",
"default": "target",
"description": "Relative path inside working directory to put compiled files into"
},
"move.account": {
"type": "string",
"default": "",
"description": "Default account to use when compiling. If not set prompt will be shown on compile command"
},
"move.languageServerPath": {
"type": "string",
"default": "",
"description": "Custom path to Move Language Server binary"
},
"move.moveCompilerPath": {
"type": "string",
"default": "",
"description": "Custom path to Move Compiler binary"
},
"move.stdlibPath": {
"type": "string",
"description": "Custom path of stdlib"
},
"move.modulesPath": {
"type": "string",
"default": "modules",
"description": "Path of modules"
},
"move.scriptArgConfigPath": {
"type": "string",
"default": "inputs",
"description": "Arguments config path for running scripts, should be a relative path to project dir"
},
"starcoin.nodePath": {
"type": "string",
"markdownDescription": "Path of Starcoin node binary",
"default": ""
},
"starcoin.nodeRpcUrl": {
"type": "string",
"markdownDescription": "Url of Starcoin node rpc address",
"default": "ws://127.0.0.1:56818"
},
"starcoin.maxGasAmount": {
"type": "integer",
"markdownDescription": "Max gas amount used to run txn",
"default": "1000000"
}
}
}
},
"icon": "img/logo.256.png",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/starcoinorg/vscode-move-ide.git"
},
"keywords": [
"libra",
"move",
"ide",
"starcoin"
],
"author": "starcoinorg",
"license": "MIT",
"bugs": {
"url": "https://github.com/starcoinorg/vscode-move-ide/issues"
},
"homepage": "https://github.com/starcoinorg/vscode-move-ide#readme",
"devDependencies": {
"@types/node": "^14.0.1",
"@types/vscode": "^1.43.0",
"standard-version": "^8.0.2",
"typescript": "^3.8.3",
"vsce": "^1.77.0"
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"move-ls": {
"version": "v0.9.2-beta2",
"repository": "starcoinorg/move-tools",
"binaries": {
"win32": "move-language-server-win32.exe",
"linux": "move-language-server-linux",
"darwin": "move-language-server-darwin"
}
},
"move-build": {
"version": "v0.9.2-beta2",
"repository": "starcoinorg/move-tools",
"binaries": {
"win32": "move-build-win32.exe",
"linux": "move-build-linux",
"darwin": "move-build-darwin"
}
}
}