forked from nyatinte/ccexp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.72 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.72 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
{
"name": "ccexp",
"type": "module",
"version": "4.0.0",
"description": "CLI tool for exploring and managing Claude Code settings and slash commands",
"author": "nyatinte <takumi.062757@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nyatinte/ccexp.git"
},
"homepage": "https://github.com/nyatinte/ccexp#readme",
"bugs": {
"url": "https://github.com/nyatinte/ccexp/issues"
},
"keywords": [
"claude",
"claude-code",
"cli",
"command-line",
"cli-tool",
"terminal",
"file-explorer",
"file-browser",
"tui",
"claude-md",
"claude-config",
"slash-commands",
"developer-tools",
"ccexp"
],
"engines": {
"node": ">=20.19.3"
},
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"start": "bun run ./src/index.tsx",
"dev": "bun run ./src/index.tsx --watch",
"test": "CI=true vitest run",
"test:watch": "CI=true vitest --watch",
"typecheck": "tsgo --noEmit",
"check": "biome check --config-path=\"$(pwd)/biome.jsonc\" .",
"check:write": "biome check --config-path=\"$(pwd)/biome.jsonc\" --write .",
"check:unsafe": "biome check --config-path=\"$(pwd)/biome.jsonc\" --write --unsafe .",
"knip": "knip",
"ci": "concurrently --kill-others-on-fail --success all -n \"build,check,typecheck,knip,test\" -c \"cyan,green,yellow,magenta,blue\" \"bun run build\" \"bun run check\" \"bun run typecheck\" \"bun run knip\" \"bun run test\"",
"prepack": "bun run build && clean-pkg-json",
"release": "bun run ci && bumpp --no-verify"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/bun": "^1.3.0",
"@types/marked-terminal": "^6.1.1",
"@types/react": "^19.1.8",
"@typescript/native-preview": "7.0.0-dev.20250712.1",
"bumpp": "^10.2.0",
"clean-pkg-json": "^1.3.0",
"concurrently": "^9.2.0",
"fs-fixture": "^2.8.1",
"ink-testing-library": "^4.0.0",
"knip": "^5.61.3",
"lefthook": "^1.12.2",
"publint": "^0.3.12",
"tsdown": "^0.12.9",
"vitest": "^3.2.4"
},
"overrides": {
"vite": "npm:rolldown-vite@latest"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"clipboardy": "^4.0.0",
"commander": "^14.0.0",
"es-toolkit": "^1.39.7",
"fdir": "^6.4.6",
"gray-matter": "^4.0.3",
"ink": "^6.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"marked": "^16.0.0",
"marked-terminal": "^7.3.0",
"open": "^10.2.0",
"open-editor": "^5.1.0",
"react": "^19.1.0",
"ts-pattern": "^5.7.1",
"zod": "^4.0.5"
}
}