-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathdev-tools.json
More file actions
414 lines (414 loc) · 13.5 KB
/
dev-tools.json
File metadata and controls
414 lines (414 loc) · 13.5 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
[
{
"id": "git",
"name": "Git",
"description": "Industry-standard distributed version control",
"category": "Dev: Tools",
"targets": {
"ubuntu": "git",
"debian": "git",
"arch": "git",
"fedora": "git",
"opensuse": "git",
"nix": "git",
"homebrew": "git"
},
"unavailableReason": "Git is a system package and not available via Flatpak or Snap.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "git",
"color": "#F05032"
}
},
{
"id": "gitlfs",
"name": "Git LFS",
"description": "Git extension for versioning large files",
"category": "Dev: Tools",
"targets": {
"ubuntu": "git-lfs",
"debian": "git-lfs",
"arch": "git-lfs",
"fedora": "git-lfs",
"opensuse": "git-lfs",
"nix": "git-lfs",
"homebrew": "git-lfs"
},
"unavailableReason": "Git LFS is a system package and not available via Flatpak or Snap.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "git",
"color": "#F05032"
}
},
{
"id": "lazygit",
"name": "LazyGit",
"description": "Simple terminal UI for git commands",
"category": "Dev: Tools",
"targets": {
"ubuntu": "lazygit",
"debian": "lazygit",
"arch": "lazygit",
"fedora": "lazygit",
"opensuse": "lazygit",
"nix": "lazygit",
"homebrew": "lazygit"
},
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "git",
"color": "#F05032"
}
},
{
"id": "docker",
"name": "Docker",
"description": "Most popular container platform for app deployment",
"category": "Dev: Tools",
"targets": {
"ubuntu": "docker.io",
"debian": "docker.io",
"arch": "docker",
"fedora": "docker",
"opensuse": "docker",
"nix": "docker",
"snap": "docker",
"homebrew": "docker"
},
"unavailableReason": "Docker is a system service and not available as a Flatpak.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "docker",
"color": "#2496ED"
}
},
{
"id": "podman",
"name": "Podman",
"description": "Rootless container engine, Docker alternative",
"category": "Dev: Tools",
"targets": {
"ubuntu": "podman",
"debian": "podman",
"arch": "podman",
"fedora": "podman",
"opensuse": "podman",
"nix": "podman",
"homebrew": "podman"
},
"unavailableReason": "Podman is a system package and not available via Flatpak or Snap.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "podman",
"color": "#892CA0"
}
},
{
"id": "podman-desktop",
"name": "Podman Desktop",
"description": "A GUI for managing Podman",
"category": "Dev: Tools",
"targets": {
"arch": "podman-desktop",
"nix": "podman-desktop",
"flatpak": "io.podman_desktop.PodmanDesktop",
"homebrew": "--cask podman-desktop"
},
"unavailableReason": "Not in official repos. Use the [Flatpak version](https://flathub.org/en/apps/io.podman_desktop.PodmanDesktop) instead, or download from [podman-desktop.io/downloads](https://podman-desktop.io/downloads).",
"icon": {
"type": "url",
"url": "https://podman-desktop.io/img/logo.svg"
}
},
{
"id": "kubectl",
"name": "kubectl",
"description": "Command-line tool for Kubernetes clusters",
"category": "Dev: Tools",
"targets": {
"arch": "kubectl",
"fedora": "kubernetes-client",
"opensuse": "kubectl",
"nix": "kubectl",
"snap": "kubectl --classic",
"homebrew": "kubectl"
},
"unavailableReason": "kubectl is not in official Ubuntu or Debian repos. Use Snap or install via [kubernetes.io](https://kubernetes.io/docs/tasks/tools/).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "kubernetes",
"color": "#326CE5"
}
},
{
"id": "vagrant",
"name": "Vagrant",
"description": "Build and manage portable dev environments",
"category": "Dev: Tools",
"targets": {
"debian": "vagrant",
"arch": "vagrant",
"fedora": "vagrant",
"opensuse": "vagrant",
"nix": "vagrant",
"homebrew": "--cask vagrant"
},
"unavailableReason": "Vagrant is a system package and not available via Flatpak or Snap. Follow instructions at [developer.hashicorp.com/vagrant/install](https://developer.hashicorp.com/vagrant/install).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "vagrant",
"color": "#1868F2"
}
},
{
"id": "virtualbox",
"name": "VirtualBox",
"description": "Free cross-platform virtual machine manager",
"category": "Dev: Tools",
"targets": {
"ubuntu": "virtualbox",
"arch": "virtualbox",
"opensuse": "virtualbox",
"nix": "virtualbox",
"homebrew": "--cask virtualbox"
},
"unavailableReason": "VirtualBox requires kernel modules and is not available via Flatpak or Snap. Debian user follow instructions at [wiki.debian.org/VirtualBox](https://wiki.debian.org/VirtualBox).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "virtualbox",
"color": "#183A61"
}
},
{
"id": "gnomeboxes",
"name": "GNOME Boxes",
"description": "Simple virtual machine app for GNOME",
"category": "Dev: Tools",
"targets": {
"ubuntu": "gnome-boxes",
"debian": "gnome-boxes",
"arch": "gnome-boxes",
"fedora": "gnome-boxes",
"opensuse": "gnome-boxes",
"nix": "gnome-boxes",
"flatpak": "org.gnome.Boxes"
},
"unavailableReason": "GNOME Boxes is not available as a Snap package.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "gnome",
"color": "#4A86CF"
}
},
{
"id": "dbeaver",
"name": "DBeaver",
"description": "Universal database management tool",
"category": "Dev: Tools",
"targets": {
"arch": "dbeaver",
"nix": "dbeaver-bin",
"flatpak": "io.dbeaver.DBeaverCommunity",
"homebrew": "--cask dbeaver-community"
},
"unavailableReason": "Not in official repos. Use [Flatpak](https://flathub.org/en/apps/io.dbeaver.DBeaverCommunity) or download from [dbeaver.io/download](https://dbeaver.io/download/).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "dbeaver",
"color": "#382923"
}
},
{
"id": "meld",
"name": "Meld",
"description": "Visual diff and merge tool for files",
"category": "Dev: Tools",
"targets": {
"ubuntu": "meld",
"debian": "meld",
"arch": "meld",
"fedora": "meld",
"opensuse": "meld",
"nix": "meld",
"flatpak": "org.gnome.meld",
"homebrew": "--cask meld"
},
"unavailableReason": "Meld is not available as a Snap package.",
"icon": {
"type": "url",
"url": "https://meldmerge.org/images/meld.svg"
}
},
{
"id": "wireshark",
"name": "Wireshark",
"description": "Network protocol analyzer and packet capture",
"category": "Dev: Tools",
"targets": {
"ubuntu": "wireshark",
"debian": "wireshark",
"arch": "wireshark-qt",
"fedora": "wireshark",
"opensuse": "wireshark",
"nix": "wireshark",
"flatpak": "org.wireshark.Wireshark",
"homebrew": "--cask wireshark-app"
},
"unavailableReason": "Wireshark is not available as a Snap package.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "wireshark",
"color": "#1679A7"
}
},
{
"id": "postman",
"name": "Postman",
"description": "Popular API testing and development platform",
"category": "Dev: Tools",
"targets": {
"arch": "postman-bin",
"nix": "postman",
"flatpak": "com.getpostman.Postman",
"snap": "postman",
"homebrew": "--cask postman"
},
"unavailableReason": "Not in official repos. Use [Flatpak](https://flathub.org/en/apps/com.getpostman.Postman)/[Snap](https://snapcraft.io/postman) or download from [postman.com/downloads](https://www.postman.com/downloads/).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "postman",
"color": "#FF6C37"
}
},
{
"id": "bruno",
"name": "Bruno",
"description": "Offline-first open-source API client",
"category": "Dev: Tools",
"targets": {
"arch": "bruno-bin",
"nix": "bruno",
"flatpak": "com.usebruno.Bruno",
"snap": "bruno",
"homebrew": "--cask bruno"
},
"unavailableReason": "Not in official repos. Use [Flatpak](https://flathub.org/apps/com.usebruno.Bruno)/[Snap](https://snapcraft.io/bruno) or download from [usebruno.com](https://www.usebruno.com/downloads).",
"icon": {
"type": "iconify",
"set": "mdi",
"name": "api",
"color": "#F4A62A"
}
},
{
"id": "hoppscotch",
"name": "Hoppscotch",
"description": "Open-source API development ecosystem",
"category": "Dev: Tools",
"targets": {
"arch": "hoppscotch-bin",
"nix": "hoppscotch",
"homebrew": "--cask hoppscotch"
},
"unavailableReason": "Use [AUR](https://aur.archlinux.org/packages/hoppscotch-bin) or download from [hoppscotch.io](https://hoppscotch.io/download).",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "hoppscotch",
"color": "#47C0A7"
}
},
{
"id": "yaak",
"name": "Yaak",
"description": "Modern desktop API client for REST and GraphQL",
"category": "Dev: Tools",
"targets": {
"arch": "yaak-bin",
"nix": "yaak",
"homebrew": "--cask yaak"
},
"unavailableReason": "Not in most official repos. Download .deb/.rpm or AppImage from [yaak.app](https://yaak.app/download).",
"icon": {
"type": "url",
"url": "https://avatars.githubusercontent.com/u/150165049?s=48&v=4"
}
},
{
"id": "virtmanager",
"name": "Virt Manager",
"description": "Desktop app for managing KVM virtual machines",
"category": "Dev: Tools",
"targets": {
"ubuntu": "virt-manager",
"debian": "virt-manager",
"arch": "virt-manager",
"fedora": "virt-manager",
"opensuse": "virt-manager",
"nix": "virt-manager",
"homebrew": "virt-manager"
},
"unavailableReason": "Virt Manager requires system access and is not available via Flatpak or Snap.",
"icon": {
"type": "iconify",
"set": "simple-icons",
"name": "qemu",
"color": "#FF6600"
}
},
{
"id": "imhex",
"name": "ImHex",
"description": "Feature-rich hex editor for reverse engineering",
"category": "Dev: Tools",
"targets": {
"arch": "imhex-bin",
"fedora": "imhex",
"nix": "imhex",
"flatpak": "net.werwolv.ImHex",
"homebrew": "--cask imhex"
},
"unavailableReason": "Not in most repos. Use [Flatpak](https://flathub.org/apps/net.werwolv.ImHex) or download from [imhex.werwolv.net](https://imhex.werwolv.net/).",
"icon": {
"type": "iconify",
"set": "mdi",
"name": "hexadecimal",
"color": "#4FC1E8"
}
},
{
"id": "cmake",
"name": "CMake",
"description": "Cross-platform build system generator",
"category": "Dev: Tools",
"targets": {
"ubuntu": "cmake",
"debian": "cmake",
"arch": "cmake",
"fedora": "cmake",
"opensuse": "cmake",
"nix": "cmake",
"snap": "cmake --classic",
"homebrew": "cmake"
},
"unavailableReason": "CMake is not available as a Flatpak package.",
"icon": {
"type": "iconify",
"set": "vscode-icons",
"name": "file-type-cmake"
}
}
]