-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "@nomnel/cccc",
"version": "0.3.0",
"description": "Claude Code Control Center - Terminal UI wrapper for Claude CLI",
"main": "dist/index.js",
"type": "module",
"bin": {
"cccc": "./bin/cccc"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"prepublishOnly": "pnpm run build && pnpm test"
},
"keywords": [
"claude",
"cli",
"terminal",
"ui",
"wrapper",
"session",
"management"
],
"author": "nomnel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nomnel/cccc.git"
},
"homepage": "https://github.com/nomnel/cccc#readme",
"bugs": {
"url": "https://github.com/nomnel/cccc/issues"
},
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/ink-text-input": "^2.0.5",
"@types/node": "^22.10.3",
"@vitest/ui": "^3.2.3",
"ink-testing-library": "^4.0.0",
"jsdom": "^26.1.0",
"typescript": "^5.7.3",
"vitest": "^3.2.3"
},
"dependencies": {
"@types/react": "^19.1.8",
"ink": "^6.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.1.0",
"strip-ansi": "^7.1.0"
}
}