@atybdot/chronicle 1.0.0
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/README.md +233 -0
- package/dist/index.js +48187 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atybdot/chronicle",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI-powered CLI that transforms uncommitted changes into a realistic git commit history.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"chronicle": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "bun build src/index.ts --outfile dist/index.js --target bun",
|
|
13
|
+
"test": "bun test",
|
|
14
|
+
"typecheck": "tsc --noEmit",
|
|
15
|
+
"lint": "oxlint",
|
|
16
|
+
"format": "oxfmt src",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"release": "standard-version"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"git",
|
|
22
|
+
"commit",
|
|
23
|
+
"history",
|
|
24
|
+
"backfill",
|
|
25
|
+
"cli",
|
|
26
|
+
"ai",
|
|
27
|
+
"conventional-commits",
|
|
28
|
+
"bun"
|
|
29
|
+
],
|
|
30
|
+
"author": "atybdot",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/atybdot/chronicle.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/atybdot/chronicle/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://chronicle.atyb.me",
|
|
40
|
+
"engines": {
|
|
41
|
+
"bun": ">=1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/bun": "^1.3.8",
|
|
48
|
+
"oxfmt": "^0.16.0",
|
|
49
|
+
"oxlint": "^0.16.0",
|
|
50
|
+
"standard-version": "^9.3.2",
|
|
51
|
+
"typescript": "^5.9.3"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@ai-sdk/anthropic": "^3.0.36",
|
|
55
|
+
"@ai-sdk/google": "^3.0.20",
|
|
56
|
+
"@ai-sdk/openai": "^3.0.25",
|
|
57
|
+
"@clack/prompts": "^1.0.0",
|
|
58
|
+
"@trpc/server": "^11.9.0",
|
|
59
|
+
"ai": "^6.0.69",
|
|
60
|
+
"better-result": "^2.7.0",
|
|
61
|
+
"picocolors": "^1.1.1",
|
|
62
|
+
"trpc-cli": "^0.12.2",
|
|
63
|
+
"zod": "^4.3.6"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist"
|
|
67
|
+
]
|
|
68
|
+
}
|