forked from kbwo/ccmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.65 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
{
"name": "ccmanager",
"version": "1.0.0",
"description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
"license": "MIT",
"author": "Kodai Kabasawa",
"repository": {
"type": "git",
"url": "https://github.com/kbwo/ccmanager.git"
},
"keywords": [
"claude",
"code",
"worktree",
"git",
"tui",
"cli"
],
"bin": {
"ccmanager": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test:run && npm run build",
"prepare": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"@xterm/headless": "^5.5.0",
"ink": "^4.1.0",
"ink-select-input": "^5.0.0",
"ink-text-input": "^5.0.1",
"meow": "^11.0.0",
"node-pty": "^1.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^20.0.0",
"@types/react": "^18.0.32",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vdemedes/prettier-config": "^2.0.1",
"chalk": "^5.2.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.2.0",
"ink-testing-library": "^3.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"vitest": "^3.2.2"
},
"prettier": "@vdemedes/prettier-config"
}