forked from badlogic/cchistory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1011 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1011 Bytes
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
{
"name": "@mariozechner/cchistory",
"version": "1.1.9",
"description": "Extract and compare prompts from different Claude Code versions",
"main": "dist/index.js",
"bin": {
"cchistory": "dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsc --watch --preserveWatchOutput",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"check": "biome check --write . && tsc --noEmit",
"prepare": "husky"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"claude",
"anthropic",
"prompts",
"history",
"analysis"
],
"author": "Mario Zechner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/badlogic/cchistory.git"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@types/node": "^22.10.5",
"husky": "^9.1.7",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"types": "./dist/index.d.ts",
"dependencies": {
"chalk": "^5.5.0"
}
}