-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.68 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": "wush",
"version": "1.0.5",
"description": "AI-powered Git workflow CLI - smart commits, PRs, and security scanning",
"type": "module",
"bin": {
"wush": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node --format esm --minify",
"prepublishOnly": "bun run build",
"start": "node dist/index.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"git",
"ai",
"cli",
"commit",
"pr",
"security",
"openai",
"gemini",
"claude",
"ollama",
"groq",
"developer-tools",
"productivity"
],
"author": "https://github.com/bikidsx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bikidsx/wush.git"
},
"homepage": "https://github.com/bikidsx/wush#readme",
"bugs": {
"url": "https://github.com/bikidsx/wush/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.1",
"@google/generative-ai": "^0.21.0",
"@octokit/rest": "^21.0.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"groq-sdk": "^0.7.0",
"inquirer": "^12.0.1",
"ollama": "^0.5.9",
"openai": "^4.73.1",
"ora": "^8.1.1",
"parse-diff": "^0.11.1",
"semver": "^7.6.3",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"bun-types": "^1.1.34",
"typescript": "^5.7.2"
}
}