-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.1 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
{
"name": "cchistory",
"version": "0.2.1",
"description": "Get shell commands from Claude Code conversation history. Because Claude's commands don't appear in your shell history.",
"main": "dist/cli.js",
"bin": {
"cchistory": "bin/cchistory.js"
},
"type": "module",
"files": [
"dist/",
"bin/",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "node scripts/update-version.js && tsc",
"dev": "tsx -e 'import { program } from \"./src/cli\"; program.parse();'",
"start": "node bin/cchistory.js",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"format": "biome format --write src/",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ci": "npm run build && vitest --run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"pretest:coverage": "npm run build",
"test:coverage": "vitest --coverage",
"test:coverage:ui": "vitest --coverage --ui",
"preversion": "npm run check && npm run test:coverage -- --run && npm run build",
"version": "node scripts/update-version.js && git add -A src/version.ts",
"prepublishOnly": "npm run typecheck && npm run check && npm run test && npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"prepare": "husky"
},
"keywords": [
"claude",
"claude-code",
"history",
"cli",
"shell",
"commands",
"terminal"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"biome check --write"
]
}
}