-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 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
{
"name": "git-commitai-cli",
"version": "2.7.1",
"description": "AI-powered git commit message generator",
"main": "dist/cli.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/SaharAvr/git-commitai-cli.git"
},
"bugs": {
"url": "https://github.com/SaharAvr/git-commitai-cli/issues"
},
"homepage": "https://github.com/SaharAvr/git-commitai-cli#readme",
"bin": {
"git-commitai": "dist/cli.cjs"
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "esbuild src/cli.ts --bundle --platform=node --format=cjs --outfile=dist/cli.cjs --sourcemap",
"prebuild": "npm run clean",
"dev": "NODE_ENV=development node --enable-source-maps dist/cli.cjs",
"predev": "npm run build --silent",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"commit",
"ai",
"openai",
"cli",
"conventional-commits"
],
"author": "Sahar Avraham",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@google/genai": "^1.28.0",
"chalk": "^4.1.2",
"inquirer": "^12.6.1",
"openai": "^6.7.0"
},
"devDependencies": {
"@types/chalk": "^2.2.4",
"@types/inquirer": "^9.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"esbuild": "^0.25.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0"
}
}