-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 2.87 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
{
"name": "geliver",
"displayName": "Geliver",
"description": "FrontendUI for connecting application integrated with geliver devserver.",
"publisher": "Oskang09",
"version": "0.1.3",
"repository": {
"url": "https://github.com/Oskang09/geliver-vscode"
},
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:geliver.open_ui"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "geliver.open_ui",
"title": "Geliver: Open Webview"
}
],
"configuration": {
"title": "Geliver",
"properties": {
"geliver.protos": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "server's proto service name"
},
"connection": {
"type": "string",
"description": "server's grpc server connection"
},
"path": {
"type": "array",
"description": "server's proto directories",
"items": {
"type": "string"
}
},
"custom": {
"type": "array",
"description": "server's custom proto directories",
"items": {
"type": "string"
}
}
}
}
},
"geliver.app_theme": {
"type": "string",
"default": "dark",
"enum": [
"dark",
"light"
],
"description": "Specify geliver app theme"
},
"geliver.editor_theme": {
"type": "string",
"default": "dracula",
"enum": [
"ambiance",
"chaos",
"chrome",
"clouds",
"clouds_midnight",
"cobalt",
"crimson_editor",
"dawn",
"dracula",
"dreamweaver",
"eclipse",
"github",
"gob",
"gruvbox",
"idle_fingers",
"iplastic",
"katzenmilch",
"kr_theme",
"kuroir",
"merbivore",
"merbivore_soft",
"monokai",
"mono_industrial",
"pastel_on_dark",
"solarized_dark",
"solarized_light",
"sqlserver",
"terminal",
"textmate",
"tomorrow",
"tomorrow_night",
"tomorrow_night_blue",
"tomorrow_night_bright",
"tomorrow_night_eighties",
"twilight",
"vibrant_ink",
"xcode"
],
"description": "Specify geliver editor theme"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.55.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"@faker-js/faker": "^6.0.0-alpha.6",
"@grpc/grpc-js": "^1.5.5",
"google-proto-files": "^2.5.0",
"protobufjs": "^6.11.2"
}
}