forked from matteobilardi/flint-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.08 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
{
"name": "flint_language_server",
"description": "A language server for flint",
"author": "Zubair Chowdhury",
"license": "MIT",
"version": "1.0.0",
"categories": [],
"engines": {
"vscode": "^1.37.1"
},
"activationEvents": [
"onLanguage:flint"
],
"main": "./client/out/extension",
"contributes": {
"commands": [
{
"command": "drawTypeState.draw",
"title": "Analyse",
"category": "Contract Insights"
},
{
"command": "gasEstimate.estimate",
"title": "Estimate Gas",
"category": "Contract Insights"
}
],
"languages": [
{
"id": "flint",
"aliases": [
"Flint",
"flint"
],
"extensions": [
".flint"
]
}
],
"configuration": { }
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/vscode": "^1.37.0",
"vscode": "^1.1.36"
}
}