commit-whisper 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +132 -0
- package/dist/index.js +5615 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "commit-whisper",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Deterministic git history analysis with a grounded, BYOK AI narrative — terminal-native CLI.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"commit-whisper": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=22"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"bundle:sea": "tsup --config tsup.sea.config.ts",
|
|
22
|
+
"build:sea": "node scripts/build-sea.mjs",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"coverage": "vitest run --coverage",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"lint": "eslint .",
|
|
28
|
+
"prepublishOnly": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/georgiosnikitas/commit-whisper.git"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"git",
|
|
36
|
+
"metrics",
|
|
37
|
+
"cli",
|
|
38
|
+
"code-analysis",
|
|
39
|
+
"repository-health"
|
|
40
|
+
],
|
|
41
|
+
"author": "Georgios Nikitas <georgiosnikitas@gmail.com>",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/georgiosnikitas/commit-whisper/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://github.com/georgiosnikitas/commit-whisper#readme",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@ai-sdk/anthropic": "3.0.84",
|
|
49
|
+
"@ai-sdk/google": "3.0.82",
|
|
50
|
+
"@ai-sdk/openai": "3.0.71",
|
|
51
|
+
"@ai-sdk/openai-compatible": "2.0.50",
|
|
52
|
+
"@clack/prompts": "1.5.1",
|
|
53
|
+
"ai": "6.0.203",
|
|
54
|
+
"commander": "15.0.0",
|
|
55
|
+
"picocolors": "1.1.1",
|
|
56
|
+
"zod": "4.4.3"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "22.19.21",
|
|
60
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
61
|
+
"eslint": "10.5.0",
|
|
62
|
+
"tsup": "8.5.1",
|
|
63
|
+
"typescript": "6.0.3",
|
|
64
|
+
"typescript-eslint": "8.61.0",
|
|
65
|
+
"vitest": "4.1.8"
|
|
66
|
+
}
|
|
67
|
+
}
|