-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.22 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.22 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
{
"author": "Drew Ritter <drew@ritter.dev>",
"bin": {
"commitment": "dist/cli.js"
},
"bugs": {
"url": "https://github.com/arittr/commitment/issues"
},
"dependencies": {
"chalk": "^5.6.2",
"execa": "^9.6.0",
"sade": "^1.8.1",
"ts-pattern": "^5.8.0",
"zod": "3"
},
"description": "AI-powered commit message generator using Claude or Codex",
"devDependencies": {
"@biomejs/biome": "^2.2.7",
"@evilmartians/lefthook": "^2.0.2",
"@openai/agents": "^0.1.11",
"@types/node": "^24.3.0",
"bun-types": "latest",
"typescript": "^5.9.2"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"examples",
"docs/CLI.md",
"docs/HOOKS.md"
],
"homepage": "https://github.com/arittr/commitment#readme",
"keywords": [
"git",
"commit",
"ai",
"claude",
"commit-message",
"conventional-commits",
"precommit",
"lefthook",
"husky",
"lint-staged"
],
"license": "ISC",
"name": "@arittr/commitment",
"packageManager": "bun@1.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/arittr/commitment.git"
},
"scripts": {
"build": "bun run build.ts",
"check-types": "bun tsc --noEmit",
"clean": "rm -r dist",
"dev": "bun --watch build.ts",
"eval": "bun run src/eval/run-eval.ts",
"eval:claude": "bun run src/eval/run-eval.ts --agent claude",
"eval:codex": "bun run src/eval/run-eval.ts --agent codex",
"eval:fixture": "bun run src/eval/run-eval.ts --fixture",
"eval:gemini": "bun run src/eval/run-eval.ts --agent gemini",
"eval:live": "bun run src/eval/run-eval.ts --mode live",
"lint": "bun check-types && biome check --write",
"lint:check": "biome check",
"prepare": "bun run build && lefthook install",
"prepublishOnly": "bun run clean && bun run build",
"test": "bun run test:unit && bun run test:integration",
"test:coverage": "bun test --coverage",
"test:integration": "bun test .integration.",
"test:integration:watch": "bun test .integration. --watch",
"test:unit": "bun test .unit.",
"test:unit:watch": "bun test .unit. --watch"
},
"type": "module",
"version": "0.18.0"
}