-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 761 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
{
"name": "commitly",
"version": "0.1.0",
"description": "Track billable hours across Claude Code, Codex CLI, and OpenCode, with git commit history as evidence.",
"keywords": ["claude-code", "codex", "opencode", "time-tracking", "billing", "hooks"],
"license": "MIT",
"homepage": "https://commitly.oss.codes",
"module": "src/cli.ts",
"type": "module",
"private": false,
"bin": {
"commitly": "./src/cli.ts"
},
"scripts": {
"test": "bun test",
"dashboard": "bun run src/cli.ts dashboard"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"react": "^19",
"react-dom": "^19"
}
}