-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.57 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
{
"name": "up9",
"displayName": "UP9 API Integration Tool",
"publisher": "UP9",
"description": "Integration code helper for API development",
"version": "0.0.0",
"engines": {
"vscode": "^1.61.0"
},
"repository": {
"type": "git",
"url": "https://github.com/up9inc/vscode-up9"
},
"icon": "images/logo128x128.png",
"activationEvents": [
"onCommand:up9.openTestsBrowser",
"onCommand:up9.runTest",
"onCommand:up9.testAuth",
"onCommand:up9.startTunnel",
"onCommand:up9.stopTunnel",
"onCommand:up9.createTunneledLaunchConfig",
"onCommand:up9.pushCode",
"onCommand:up9.copyCode"
],
"main": "./out/extension.js",
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"commands": [
{
"command": "up9.openTestsBrowser",
"title": "UP9: Code Browser"
},
{
"command": "up9.runTest",
"title": "UP9: Run Code With UP9"
},
{
"command": "up9.webAuth",
"title": "UP9: Web Authentication"
},
{
"command": "up9.signOut",
"title": "UP9: Sign Out"
},
{
"command": "up9.startTunnel",
"title": "UP9: Start Tunnel"
},
{
"command": "up9.stopTunnel",
"title": "UP9: Stop Tunnel"
},
{
"command": "up9.createTunneledLaunchConfig",
"title": "UP9: Create Tunneled Launch Config"
},
{
"command": "up9.pushCode",
"title": "UP9: Push Code"
},
{
"command": "up9.copyCode",
"title": "UP9: Copy Code"
}
],
"menus": {
"editor/context": [
{
"command": "up9.runTest",
"group": "up9",
"when": "resourceLangId == python"
}
],
"commandPalette": [
{
"command": "up9.runTest",
"when": "false"
},
{
"command": "up9.webAuth",
"when": "false"
},
{
"command": "up9.signOut",
"when": "false"
},
{
"command": "up9.pushCode",
"when": "false"
},
{
"command": "up9.copyCode",
"when": "false"
}
]
},
"keybindings": [
{
"command": "up9.pushCode",
"key": "ctrl+alt+p"
},
{
"command": "up9.copyCode",
"key": "ctrl+alt+c"
}
]
},
"scripts": {
"setup-browser": "cd src/webview && npm install && cd ../../",
"vscode:prepublish": "npm run compile",
"compile": "cd src/webview && npm run build && cd ../../ && tsc -p ./ && cp ./src/webview/dist/index.html ./out/",
"compile-no-browser": "tsc -p ./",
"pretest": "mkdir -p ./out/tests/integration/resources/ && cp -r ./src/tests/integration/resources/* ./out/tests/integration/resources/",
"test": "node ./out/tests/integration/runIntegrationTests.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/http-proxy": "^1.17.7",
"@types/mocha": "^9.0.0",
"@types/node": "^10.12.21",
"@types/tmp": "^0.2.2",
"@types/vscode": "^1.61.0",
"@types/vscode-webview": "^1.57.0",
"@vscode/test-electron": "^1.6.2",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"tslint": "^5.12.1",
"typescript": "^4.4.4",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@kubernetes/client-node": "^0.16.1",
"axios": "^0.24.0",
"client-oauth2": "^4.3.3",
"clipboardy": "^2.3.0",
"http-proxy": "^1.18.1",
"jsonwebtoken": "^8.5.1",
"open": "^8.4.0"
}
}