-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
123 lines (123 loc) · 3.46 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
{
"name": "rholang",
"displayName": "Rholang",
"description": "Language support for Rholang. Official language for RChain distributed virtual machine.",
"version": "0.7.0",
"preview": false,
"publisher": "tgrospic",
"author": "Tomislav Grospic",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.65.x"
},
"main": "./build/src/extension",
"activationEvents": [
"onLanguage:rho"
],
"scripts": {
"compile": "tsc -watch -p ./",
"rnode-generate": "rnode-grpc --rnode-version v0.12.4 --include-reflection true",
"postinstall": "npm run rnode-generate",
"vscode:prepublish": "tsc -p ./"
},
"dependencies": {
"@grpc/grpc-js": "^1.5.7",
"@tgrospic/rnode-grpc-js": "^0.10.0",
"fs-extra": "^10.0.1",
"google-protobuf": "^3.19.4",
"ramda": "^0.28.0",
"vscode-languageclient": "^5.2.1",
"vscode-languageserver": "^5.2.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/node": "^17.0.21",
"@types/ramda": "^0.28.1",
"@types/vscode": "^1.65.0",
"grpc-tools": "^1.11.2",
"protobufjs": "^6.11.2",
"typescript": "^4.6.2"
},
"categories": [
"Programming Languages"
],
"icon": "assets/rchain.png",
"contributes": {
"configuration": {
"type": "object",
"title": "Rholang",
"properties": {
"rholang.enableLanguageServer": {
"type": "boolean",
"default": true,
"description": "Enable loading of the Language Server and RNode when open a file."
},
"rholang.enableDocker": {
"type": "boolean",
"default": false,
"description": "Run RNode with Docker."
},
"rholang.rnode": {
"type": "string",
"default": "rnode",
"description": "RNode executable used by Rholang Language Server."
},
"rholang.rnodeDockerImage": {
"type": "string",
"default": "rchain/rnode:latest",
"description": "Docker image (version) used by Rholang Language Server."
},
"rholang.showAllOutput": {
"type": "boolean",
"default": false,
"description": "Show all output from RNode in Output Panel."
},
"rholang.unsupportedNamesRemoveEnable": {
"type": "boolean",
"default": false,
"description": "[Experimental] Enable removal of unsupported names before evaluation."
},
"rholang.unsupportedNames": {
"type": "string",
"default": "rho:rchain:deployId rho:rchain:deployerId",
"description": "[Experimental] Rholang names to be removed from the code before evaluated (space separated)."
}
}
},
"languages": [
{
"id": "rho",
"aliases": [
"Rholang",
"rho"
],
"extensions": [
"rho"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rho",
"scopeName": "source.rho",
"path": "./syntaxes/rho.tmLanguage.json"
}
],
"snippets": [
{
"language": "rho",
"path": "./snippets/snippets.json"
}
]
},
"bugs": {
"url": "https://github.com/tgrospic/rholang-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tgrospic/rholang-vscode.git"
},
"homepage": "https://github.com/tgrospic/rholang-vscode/blob/master/README.md"
}