gh-manager-cli 1.10.5 → 1.11.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.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.10.5",
3
+ "version": "1.11.0",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "bin": {
9
- "gh-manager": "dist/index.js"
9
+ "gh-manager-cli": "dist/index.js"
10
10
  },
11
11
  "files": [
12
12
  "dist/",
@@ -29,10 +29,12 @@
29
29
  "build:binaries": "npm run build && pkg dist/index.js --targets node18-linux-x64,node18-macos-x64,node18-windows-x64 --out-path ./binaries",
30
30
  "dev": "tsup --watch",
31
31
  "start": "node dist/index.js",
32
- "start:cache": "GH_MANAGER_APOLLO=1 GH_MANAGER_DEBUG=1 node dist/index.js",
33
- "start:no-cache": "GH_MANAGER_APOLLO=0 GH_MANAGER_DEBUG=1 node dist/index.js",
34
- "test:cache": "pnpm build && pnpm start:cache",
35
- "prepublishOnly": "pnpm run build"
32
+ "start:debug": "GH_MANAGER_DEBUG=1 node dist/index.js",
33
+ "start:dev": "REPOS_PER_FETCH=5 GH_MANAGER_DEBUG=1 node dist/index.js",
34
+ "prepublishOnly": "pnpm run build",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "test:coverage": "vitest run --coverage"
36
38
  },
37
39
  "engines": {
38
40
  "node": ">=18"
@@ -55,10 +57,13 @@
55
57
  "@semantic-release/git": "^10.0.1",
56
58
  "@types/node": "^24.3.0",
57
59
  "@types/react": "^19.1.12",
60
+ "ink-testing-library": "^3.0.0",
58
61
  "pkg": "^5.8.1",
59
62
  "semantic-release": "^24.2.7",
60
63
  "tsup": "^8.5.0",
61
- "typescript": "^5.9.2"
64
+ "typescript": "^5.9.2",
65
+ "vitest": "^2.1.3",
66
+ "@vitest/coverage-v8": "^2.1.3"
62
67
  },
63
68
  "repository": {
64
69
  "type": "git",
@@ -92,18 +97,18 @@
92
97
  {
93
98
  "assets": [
94
99
  {
95
- "path": "binaries/gh-manager-linux-x64/gh-manager-linux-x64",
96
- "name": "gh-manager-linux-x64",
100
+ "path": "binaries/gh-manager-cli-linux-x64/gh-manager-cli-linux-x64",
101
+ "name": "gh-manager-cli-linux-x64",
97
102
  "label": "Linux x64 Binary"
98
103
  },
99
104
  {
100
- "path": "binaries/gh-manager-macos-x64/gh-manager-macos-x64",
101
- "name": "gh-manager-macos-x64",
105
+ "path": "binaries/gh-manager-cli-macos-x64/gh-manager-cli-macos-x64",
106
+ "name": "gh-manager-cli-macos-x64",
102
107
  "label": "macOS x64 Binary"
103
108
  },
104
109
  {
105
- "path": "binaries/gh-manager-windows-x64/gh-manager-windows-x64.exe",
106
- "name": "gh-manager-windows-x64.exe",
110
+ "path": "binaries/gh-manager-cli-windows-x64/gh-manager-cli-windows-x64.exe",
111
+ "name": "gh-manager-cli-windows-x64.exe",
107
112
  "label": "Windows x64 Binary"
108
113
  }
109
114
  ]