-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.15 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
{
"name": "alcapush",
"version": "1.0.7",
"description": "AI-powered git commit message generator with GPT-5-nano support 🚀",
"keywords": [
"git",
"commit",
"ai",
"gpt",
"gpt-5-nano",
"openai",
"cli",
"alcapush"
],
"main": "./out/cli.cjs",
"bin": {
"alcapush": "out/cli.cjs",
"acp": "out/cli.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dablon/alcapush.git"
},
"homepage": "https://github.com/dablon/alcapush#readme",
"bugs": {
"url": "https://github.com/dablon/alcapush/issues"
},
"type": "module",
"author": "Nicolas Alcaraz <nicolas.alcaraz@tafitech.io>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"out/cli.cjs",
"README.md",
"LICENSE"
],
"scripts": {
"watch": "npm run -S build -- --sourcemap --watch",
"start": "node ./out/cli.cjs",
"dev": "ts-node ./src/cli.ts",
"build": "npx rimraf out && node esbuild.config.js",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext ts && tsc --noEmit",
"format": "prettier --write src",
"test": "jest test/unit",
"test:integration": "npm run build && jest --config jest.config.integration.cjs",
"test:all": "jest"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"dotenv": "^16.0.3",
"esbuild": "^0.25.5",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"puppeteer": "^24.31.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.19.2",
"@azure/openai": "^1.0.0-beta.12",
"@clack/prompts": "^0.6.1",
"@dqbd/tiktoken": "^1.0.2",
"@google/generative-ai": "^0.11.4",
"axios": "^1.6.0",
"chalk": "^5.3.0",
"cleye": "^1.3.2",
"execa": "^8.0.0",
"ignore": "^5.3.0",
"ini": "^4.0.0",
"inquirer": "^9.2.0",
"openai": "^4.57.0",
"ora": "^8.0.0",
"zod": "^3.23.8"
}
}