-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.77 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
{
"name": "gitquill",
"version": "0.2.0",
"description": "Privacy-first CLI that turns your git history into beautiful narratives — AI-generated commit messages and release notes. Works with any OpenAI-compatible endpoint, including local models via Ollama.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"gitquill": "./dist/index.js",
"gq": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "bash test/e2e.sh",
"prepublishOnly": "npm run build",
"start": "node dist/index.js"
},
"keywords": [
"git",
"commit",
"commit-message",
"conventional-commits",
"release-notes",
"changelog",
"ai",
"cli",
"ollama",
"openai",
"developer-tools",
"privacy"
],
"author": "Cryptoteep (https://github.com/Cryptoteep)",
"license": "MIT",
"homepage": "https://github.com/Cryptoteep/gitquill",
"repository": {
"type": "git",
"url": "https://github.com/Cryptoteep/gitquill.git"
},
"bugs": {
"url": "https://github.com/Cryptoteep/gitquill/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"openai": "^4.67.0",
"simple-git": "^3.27.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.10.0",
"eslint": "^10.0.0",
"globals": "^17.7.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
},
"preferGlobal": false
}