opendocker 0.1.11 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/bin/opendocker +0 -0
  2. package/package.json +12 -14
  3. package/README.md +0 -13
package/bin/opendocker CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "0.1.11",
3
+ "version": "0.2.0",
4
4
  "name": "opendocker",
5
5
  "type": "module",
6
6
  "private": false,
@@ -9,23 +9,21 @@
9
9
  },
10
10
  "files": ["bin/", "package.json", "README.md"],
11
11
  "scripts": {
12
- "build": "bun build ./src/main.tsx --outdir ./dist --target bun",
13
- "binary": "bun build ./src/main.tsx --compile --outfile ./bin/opendocker",
14
- "start": "bun run dist/main.js",
15
- "dev": "bun --watch run src/main.tsx"
12
+ "dev": "bun run --conditions=browser ./src/index.tsx",
13
+ "build": "bun run scripts/build.ts",
14
+ "build:single": "bun run scripts/build.ts --single",
15
+ "binary": "bun run scripts/build.ts --single"
16
16
  },
17
17
  "devDependencies": {
18
+ "@tsconfig/bun": "latest",
18
19
  "@types/bun": "latest"
19
20
  },
20
- "peerDependencies": {
21
- "typescript": "^5"
22
- },
23
21
  "dependencies": {
24
- "@opentui/core": "^0.1.46",
25
- "@opentui/react": "^0.1.46",
26
- "clipboardy": "4.0.0",
27
- "opencode-ai": "^1.0.110",
28
- "strip-ansi": "^7.1.2",
29
- "zustand": "^5.0.8"
22
+ "@opentui/core": "^0.1.67",
23
+ "@opentui/solid": "^0.1.67",
24
+ "@types/dockerode": "^3.3.47",
25
+ "clipboardy": "^5.0.2",
26
+ "dockerode": "^4.0.9",
27
+ "solid-js": "^1.9.10"
30
28
  }
31
29
  }
package/README.md DELETED
@@ -1,13 +0,0 @@
1
- <p align="center">A TUI Built for Docker Management and Log Monitoring.</p>
2
-
3
- ![OpenDocker Terminal UI](src/assets/images/banner.jpg)
4
-
5
- ---
6
-
7
- ### Installation
8
-
9
- ```bash
10
- # Package managers
11
- bun i -g opendocker # or npm/pnpm/yarn
12
- ```
13
- ---