-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
185 lines (185 loc) · 4.7 KB
/
package.json
File metadata and controls
185 lines (185 loc) · 4.7 KB
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
{
"name": "agin-requests",
"displayName": "Agin Requests",
"description": "Simplify API and real-time testing in VS Code",
"publisher": "agin",
"version": "1.0.5",
"pricing": "Free",
"icon": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/TymekV/agin-requests.git"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"extensionKind": [
"workspace",
"ui"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "agin-requests.new",
"title": "New Request",
"category": "Agin Requests"
},
{
"command": "agin-requests.newSSE",
"title": "New SSE Request",
"category": "Agin Requests"
},
{
"command": "agin-requests.newWebSocket",
"title": "New WebSocket Connection",
"category": "Agin Requests"
},
{
"command": "agin-requests.newSocketIO",
"title": "New Socket.IO Connection",
"category": "Agin Requests"
},
{
"command": "agin-requests.importCurl",
"title": "Import from cURL",
"category": "Agin Requests"
},
{
"command": "agin-requests.openDocs",
"title": "Documentation",
"category": "Agin Requests"
},
{
"command": "agin-requests.releaseNotes",
"title": "Release Notes",
"category": "Agin Requests"
},
{
"command": "agin-requests.settings",
"title": "Extension Settings",
"category": "Agin Requests"
},
{
"command": "agin-requests.reloadDatabase",
"title": "Reload Database",
"category": "Agin Requests"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "agin-requests-sidebar",
"title": "Agin Requests",
"icon": "assets/sidebar.svg"
}
]
},
"views": {
"agin-requests-sidebar": [
{
"type": "webview",
"id": "agin-requests-sidebar",
"name": "Agin Requests",
"icon": "assets/sidebar.svg",
"contextualTitle": "Agin Requests"
}
]
},
"menus": {
"view/title": [
{
"submenu": "agin-requests.more-options",
"when": "view == agin-requests-sidebar",
"group": "navigation"
}
],
"agin-requests.more-options": [
{
"command": "agin-requests.settings",
"when": "view == agin-requests-sidebar",
"group": "settings"
},
{
"command": "agin-requests.openDocs",
"when": "view == agin-requests-sidebar",
"group": "links"
},
{
"command": "agin-requests.releaseNotes",
"when": "view == agin-requests-sidebar",
"group": "links"
}
]
},
"submenus": [
{
"id": "agin-requests.more-options",
"icon": "$(kebab-horizontal)",
"label": "More Options"
}
],
"configuration": {
"title": "Agin Requests",
"properties": {
"agin-requests.defaultContext": {
"type": "string",
"default": "device",
"enum": [
"device",
"workspace"
],
"markdownEnumDescriptions": [
"Saved locally on the device (or on the remote if using SSH)",
"Saved in the currently opened folder (or in the first folder if multiple folders are opened in a workspace)"
],
"markdownDescription": "Default context (device or opened workspace)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/qs": "^6.9.16",
"@types/semver": "^7.5.8",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.13.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@proxymanllc/better-curl-to-json": "^0.2.0",
"@types/ws": "^8.5.13",
"@vscode/codicons": "^0.0.36",
"arg": "^5.0.2",
"axios": "^1.7.7",
"eventsource": "^3.0.1",
"form-data": "^4.0.1",
"module-alias": "^2.2.3",
"qs": "^6.13.0",
"semver": "^7.6.3",
"socket.io-client": "^4.8.1",
"ws": "^8.18.0",
"yaml": "^2.6.1"
},
"_moduleAliases": {
"@": "out",
"@shared": "out/shared"
}
}