-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "sidekick-docker",
"version": "0.4.0",
"description": "Interactive Docker dashboard (TUI), plus scriptable ps, logs, images, volumes, networks, stats, df and inspect commands",
"author": "Cesar Andres Lopez <cesarandreslopez@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/cesarandreslopez/sidekick-docker.git",
"directory": "sidekick-docker-cli"
},
"homepage": "https://cesarandreslopez.github.io/sidekick-docker/",
"bugs": {
"url": "https://github.com/cesarandreslopez/sidekick-docker/issues"
},
"keywords": [
"docker",
"docker-compose",
"tui",
"terminal",
"dashboard",
"containers",
"cli",
"devops",
"docker-management"
],
"publishConfig": {
"access": "public"
},
"icon": "images/icon-128.png",
"type": "module",
"bin": {
"sidekick-docker": "./dist/sidekick-docker.mjs"
},
"files": [
"dist/sidekick-docker.mjs"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "node esbuild.cjs",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.17",
"asciichart": "^1.5.25",
"commander": "^15.0.0",
"esbuild": "^0.28.1",
"ink": "^7.1.1",
"node-pty": "^1.1.0",
"react": "^19.2.8",
"sidekick-docker-shared": "file:../sidekick-docker-shared",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"license": "MIT"
}