-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
191 lines (191 loc) · 5.37 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
{
"name": "dbos-ttdbg",
"displayName": "DBOS Time Travel Debugger",
"publisher": "dbos-inc",
"version": "0.0.0-placeholder",
"icon": "dbos-logo-128.png",
"license": "MIT",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Debuggers"
],
"homepage": "https://dbos.dev/",
"bugs": {
"url": "https://github.com/dbos-inc/ttdbg-extension/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dbos-inc/ttdbg-extension.git"
},
"activationEvents": [
"workspaceContains:**/dbos-config.yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dbos-ttdbg.cloud-login",
"title": "Log Into DBOS Cloud",
"category": "DBOS",
"icon": "$(log-in)"
},
{
"command": "dbos-ttdbg.refresh-domain",
"title": "Refresh DBOS Cloud Resources",
"category": "DBOS",
"icon": "$(refresh)"
},
{
"command": "dbos-ttdbg.delete-domain-credentials",
"title": "Delete Stored DBOS Cloud Credentials",
"category": "DBOS",
"icon": "$(log-out)"
},
{
"command": "dbos-ttdbg.shutdown-debug-proxy",
"title": "Shutdown Debug Proxy",
"category": "DBOS"
},
{
"command": "dbos-ttdbg.update-debug-proxy",
"title": "Update Debug Proxy",
"category": "DBOS"
},
{
"command": "dbos-ttdbg.launch-debug-proxy",
"title": "Launch Debug Proxy",
"category": "DBOS",
"icon": "$(debug)"
},
{
"command": "dbos-ttdbg.launch-dashboard",
"title": "Launch DBOS Dashboard",
"category": "DBOS",
"icon": "$(server)"
},
{
"command": "dbos-ttdbg.set-app-name",
"title": "Set Application Name",
"category": "DBOS"
}
],
"configuration": {
"title": "DBOS Time Travel Debugger",
"properties": {
"dbos-ttdbg.debug_pre_launch_task": {
"type": "string"
},
"dbos-ttdbg.debug_proxy_port": {
"type": "number",
"default": 2345
},
"dbos-ttdbg.debug_proxy_path": {
"type": "string",
"description": "Path to the debug proxy executable. Overrides downloading the latest version of the debug proxy."
},
"dbos-ttdbg.debug_proxy_launch": {
"type": "boolean",
"default": true,
"description": "Automatically launch the debug proxy when debugging."
},
"dbos-ttdbg.prov_db_database": {
"type": "string"
},
"dbos-ttdbg.prov_db_host": {
"type": "string"
},
"dbos-ttdbg.prov_db_port": {
"type": "number"
},
"dbos-ttdbg.prov_db_user": {
"type": "string"
}
}
},
"menus": {
"view/item/context": [
{
"command": "dbos-ttdbg.cloud-login",
"when": "view == dbos-ttdbg.views.resources && viewItem == cloudDomain",
"group": "inline"
},
{
"command": "dbos-ttdbg.launch-dashboard",
"when": "view == dbos-ttdbg.views.resources && (viewItem == cloudDomain || viewItem == cloudApp)",
"group": "inline"
},
{
"command": "dbos-ttdbg.refresh-domain",
"when": "view == dbos-ttdbg.views.resources && viewItem == cloudDomain",
"group": "inline"
},
{
"command": "dbos-ttdbg.delete-domain-credentials",
"when": "view == dbos-ttdbg.views.resources && viewItem == cloudDomain"
},
{
"command": "dbos-ttdbg.launch-debug-proxy",
"when": "view == dbos-ttdbg.views.resources && viewItem == cloudApp",
"group": "inline"
}
]
},
"views": {
"dbos-cloud": [
{
"id": "dbos-ttdbg.views.resources",
"name": "Resources"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "dbos-cloud",
"title": "DBOS Cloud",
"icon": "resources/dbos-logo.png"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"compile": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@types/fnv-plus": "^1.3.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.2",
"@types/semver": "^7.5.8",
"@types/stream-json": "^1.7.7",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.24.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"fnv-plus": "^1.3.1",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"jwks-rsa": "^3.1.0",
"pg": "^8.11.3",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"stream-json": "^1.8.0",
"typescript": "^5.3.3",
"winston": "^3.11.0",
"yaml": "^2.4.0"
}
}