-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "@404-pf/commit-echo",
"version": "0.1.0",
"description": "LLM-powered CLI that learns your Git commit style and auto-suggests personalized commit messages",
"type": "module",
"bin": {
"commit-echo": "dist/index.js"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc",
"test": "npm run build && node --test tests/**/*.test.mjs",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"files": [
"dist"
],
"keywords": [
"git",
"commit",
"cli",
"llm",
"ai"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/404-PF/commit-echo.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"prettier": "^3.8.3",
"typescript": "^5.7.0"
}
}