-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.26 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "commitra",
"version": "1.0.4",
"description": "An AI-assisted developer intelligence CLI that generates context-rich commit messages, READMEs, and project insights (tech stack, architecture, flow, etc.)",
"type": "module",
"bin": {
"commitra": "./dist/index.js",
"commitra-hook-entry": "./dist/hook-entry.js"
},
"main": "./dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "pkgroll",
"start": "node dist/index.js",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --reporter=dot --coverage"
},
"exports": {
".": "./dist/index.js",
"./hook-entry": "./dist/hook-entry.js"
},
"pkgroll": {
"rootDir": "src",
"outDir": "dist"
},
"author": "Akolade Oluwafemi Adeyemi",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@clack/prompts": "^0.11.0",
"@iarna/toml": "^2.2.5",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"figlet": "^1.9.3",
"fuse.js": "^7.1.0",
"groq-sdk": "^0.34.0",
"gsap": "^3.13.0",
"ini": "^6.0.0",
"leven": "^4.1.0",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-markdown": "^2.1.2",
"minimatch": "^10.1.1",
"node-abort-controller": "^3.1.1",
"openai": "^6.8.1",
"ora": "^7.0.1",
"prettier": "^3.6.2",
"unified": "^11.0.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/ini": "^4.1.1",
"@types/node": "^24.10.1",
"@types/ora": "^3.1.0",
"@types/prettier": "^2.7.3",
"@types/xml2js": "^0.4.14",
"@vitest/coverage-v8": "^3.2.4",
"execa": "^9.6.0",
"pkgroll": "^2.20.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"ai",
"cli",
"developer-tools",
"commit",
"readme",
"automation",
"project-analysis"
],
"homepage": "https://github.com/Femtech-web/commitra",
"repository": {
"type": "git",
"url": "https://github.com/Femtech-web/commitra.git"
},
"bugs": {
"url": "https://github.com/Femtech-web/commitra/issues"
}
}