-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
197 lines (197 loc) · 4.41 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
{
"name": "coretex",
"displayName": "coretex",
"publisher": "CoretexLLC",
"description": "",
"version": "0.1.2",
"icon": "images/coretex-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/coretex-ai/vscode-extension"
},
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"title": "Coretex Configuration",
"properties": {
"Email": {
"type": "string",
"default": "",
"description": "Your Coretex account email"
},
"NodeName": {
"type": "string",
"default": "",
"description": "Your Node Name"
},
"StoragePath": {
"type": "string",
"default": "",
"description": "Your Node Storage Path"
},
"Space": {
"type": "integer",
"default": 0,
"description": "Your Current Coretex Space"
},
"NodeID": {
"type": "integer",
"default": 0,
"description": "Your Current Coretex Node"
}
}
}
],
"commands": [
{
"command": "coretex.checkNodeStatus",
"title": "Coretex: Check node status"
},
{
"command": "coretex.startNode",
"title": "Coretex: Start node"
},
{
"command": "coretex.stopNode",
"title": "Coretex: Stop node"
},
{
"command": "coretex.configureNode",
"title": "Coretex: Configure node"
},
{
"command": "coretex.downloadNodeImage",
"title": "Coretex: Download node image"
},
{
"command": "coretex.installCoretexCLI",
"title": "Coretex: Install Coretex CLI"
},
{
"command": "coretex.checkCoretexCLIInstalled",
"title": "Coretex: Check if Coretex CLI is installed"
},
{
"command": "coretex.uninstallCoretexCLI",
"title": "Coretex: Uninstall Coretex CLI"
},
{
"command": "coretex.convertToCoretexProject",
"title": "Coretex: Convert to Coretex project"
},
{
"command": "coretex.openDocumentation",
"title": "Coretex: Go to Coretex documentation"
},
{
"command": "coretex.openDocumentationPythonLib",
"title": "Coretex: Go to Python library documentation"
},
{
"command": "coretex.addParameter",
"title": "Coretex: Add project parameter"
},
{
"command": "coretex.showNodeLogs",
"title": "Coretex: Show node logs"
},
{
"command": "coretex.configureUser",
"title": "Coretex: Log in"
},
{
"command": "coretex.listNodes",
"title": "Coretex: List Nodes"
}
],
"views": {
"coretexPanel": [
{
"type": "webview",
"id": "coretex.cli",
"name": "CLI",
"icon": "images/coretex-icon.png"
},
{
"type": "webview",
"id": "coretex.user",
"name": "USER",
"icon": "images/coretex-icon.png"
},
{
"type": "webview",
"id": "coretex.node",
"name": "Node",
"icon": "images/coretex-icon.png"
},
{
"type": "webview",
"id": "coretex.project",
"name": "Project",
"icon": "images/coretex-icon.png"
},
{
"type": "webview",
"id": "coretex.help",
"name": "Help",
"icon": "images/coretex-icon.png"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "coretexPanel",
"title": "Coretex",
"icon": "images/coretex-icon.png"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/tmp": "^0.2.3",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.2.2",
"ajv": "^6.12.6",
"child_process": "^1.0.2",
"fs-extra": "^11.1.1",
"jsonc-parser": "^3.2.0",
"tmp": "^0.2.1",
"webview-ui-toolkit": "^0.0.0"
}
}