-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "@its_4_nik/gitai",
"version": "1.1.3",
"bin": {
"gitai": "./dist/gitai.js"
},
"repository": {
"url": "https://github.com/Its4Nik/GitAI"
},
"main": "dist/cli.js",
"module": "src/cli.ts",
"license": "MIT",
"keywords": [
"git",
"commit",
"ai",
"changelog",
"version",
"cli",
"selfhost"
],
"files": [
"dist/**/*",
"README.md"
],
"author": {
"name": "Its_4_Nik",
"email": "info@itsnik.de",
"url": "https://github.com/Its4Nik/GitAI"
},
"bugs": {
"url": "https://github.com/Its4Nik/GitAI"
},
"type": "module",
"scripts": {
"build": "GITAI_VERSION=$(cat ./package.json | jq .version) bun build ./src/cli.ts --outfile ./dist/gitai.js --production --target=bun --minify --env 'GITAI_*'",
"lint": "biome check --formatter-enabled=true --linter-enabled=true --organize-imports-enabled=true --fix src"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"commander": "^14.0.0",
"ignore": "^7.0.5",
"inquirer": "^12.6.3",
"ollama": "^0.5.16"
}
}