-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.02 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
{
"name": "ccheckpoints",
"version": "1.0.2",
"description": "Checkpoint system for Claude Code CLI - Track and visualize your coding sessions with automatic checkpoint creation",
"main": "dist/cli.js",
"type": "module",
"bin": {
"ccheckpoints": "./dist/cli.js",
"ccp": "./dist/cli.js"
},
"preferGlobal": true,
"files": [
"dist/",
"public/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsx src/cli.ts",
"dev:watch": "tsx watch src/cli.ts",
"prepublishOnly": "npm run build",
"test": "tsx src/test/index.ts",
"publish:npm": "npm run build && npm publish",
"publish:dry": "npm run build && npm publish --dry-run"
},
"keywords": [
"claude",
"claude-code",
"claude-cli",
"checkpoint",
"checkpoints",
"typescript",
"cli",
"tracking",
"session-tracking",
"developer-tools",
"productivity",
"coding-assistant",
"dashboard",
"visualization",
"hooks"
],
"author": "Fayaz Bin Salam <p32929@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/p32929/ccheckpoints.git"
},
"bugs": {
"url": "https://github.com/p32929/ccheckpoints/issues"
},
"homepage": "https://github.com/p32929/ccheckpoints#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"chokidar": "^3.5.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"sqlite3": "^5.1.6",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/node": "^20.8.0",
"@types/sqlite3": "^3.1.9",
"@types/ws": "^8.5.8",
"rimraf": "^5.0.5",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}