-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.38 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
87
88
89
90
{
"name": "aigh",
"version": "1.1.0",
"description": "AI-powered Git and GitHub CLI assistant",
"bin": {
"aigh": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint src --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "node build.mjs",
"build:link": "npm run build && npm link",
"start": "node dist/cli.js",
"dev": "node --enable-source-maps dist/cli.js",
"build:dev": "node build.mjs --dev",
"watch": "node build.mjs --watch"
},
"files": [
"dist",
"src"
],
"dependencies": {
"ai": "^5.0.116",
"@ai-sdk/openai": "^2.0.88",
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/google": "^2.0.51",
"chalk": "^5.3.0",
"diff": "^5.2.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"inquirer": "^9.3.5",
"meow": "^13.2.0",
"ora": "^8.0.1"
},
"devDependencies": {
"vitest": "^3.2.3",
"@vitest/coverage-v8": "^3.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/diff": "^5.2.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.19.42",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.25.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.3.3",
"semantic-release": "^24.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fernandobelotto/aigh.git"
},
"keywords": [
"ai",
"git",
"github",
"cli",
"automation",
"llm",
"openai",
"anthropic",
"claude",
"gemini"
],
"author": "Your Name <your.email@example.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fernandobelotto/aigh/issues"
},
"homepage": "https://github.com/fernandobelotto/aigh#readme"
}