-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.94 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.94 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
{
"name": "gh-manager-cli",
"version": "1.38.0",
"private": false,
"description": "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"gh-manager-cli": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"github",
"cli",
"repository",
"management",
"terminal",
"tui",
"react-ink",
"github-cli",
"github-manager",
"repo-manager",
"repository-cleanup",
"github-cleanup",
"archive-repos",
"delete-repos",
"github-api",
"developer-tools",
"productivity",
"github-tools",
"terminal-ui",
"interactive-cli",
"ink",
"graphql"
],
"type": "module",
"scripts": {
"build": "tsup",
"build:binaries": "npm run build && pkg dist/index.js --targets node18-linux-x64,node18-macos-x64,node18-windows-x64 --out-path ./binaries",
"dev": "tsup --watch",
"start": "node dist/index.js",
"start:debug": "GH_MANAGER_DEBUG=1 node dist/index.js",
"start:dev": "REPOS_PER_FETCH=5 GH_MANAGER_DEBUG=1 node dist/index.js",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"brew:sha": "bash scripts/brew-sha.sh",
"assets:png": "bash scripts/convert-svg-to-png.sh"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@apollo/client": "^3.14.0",
"@octokit/graphql": "^9.0.1",
"apollo3-cache-persist": "^0.14.1",
"chalk": "^5.6.0",
"dotenv": "^17.2.1",
"env-paths": "^3.0.0",
"graphql": "^16.11.0",
"ink": "^6.2.3",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"open": "^10.1.0",
"react": "^19.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@vitest/coverage-v8": "^2.1.3",
"ink-testing-library": "^3.0.0",
"pkg": "^5.8.1",
"semantic-release": "^24.2.7",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/wiiiimm/gh-manager-cli.git"
},
"bugs": {
"url": "https://github.com/wiiiimm/gh-manager-cli/issues"
},
"homepage": "https://gh-manager-cli.dev",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}