-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.64 KB
/
package.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gitwz",
"version": "8.2.1",
"description": "Transform your git commits quickly and easily with AI (OpenAI GPT). Using this tool, you can make your git commits more visually appealing. It only takes a few seconds to create eye-catching git commits that stand out.",
"type": "module",
"license": "MIT",
"keywords": [
"ai",
"ai-commits",
"ai-enhanced-git",
"ai-git-helper",
"ai-powered-git",
"cli",
"commit",
"commit-helper",
"commits",
"developer-tools",
"git",
"git-commit-ai-assistant",
"git-commit-automation",
"git-commit-gpt",
"git-tools",
"gitwiz",
"gitwz",
"gpt",
"gpt-ai-commits",
"gpt-commit",
"openai",
"openai-git-commits",
"smart-commits",
"tool"
],
"main": "cli.js",
"bin": {
"gitwz": "out/cli.cjs",
"gwz": "out/cli.cjs",
"gw": "out/cli.cjs"
},
"repository": {
"url": "git+https://github.com/aiFdn/gitwz.git"
},
"author": "Md. Sazzad Hossain Sharkar <md@szd.sh> (https://github.com/SHSharkar/)",
"homepage": "https://github.com/aiFdn/gitwz#readme",
"bugs": {
"url": "https://github.com/aiFdn/gitwz/issues",
"email": "md@szd.sh"
},
"files": [
"out/cli.cjs",
"out/tiktoken_bg.wasm"
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "npm run -S build -- --sourcemap --watch",
"start": "node --no-deprecation ./out/cli.cjs",
"dev": "tsx ./src/cli.ts",
"build": "rm -rf out && node esbuild.config.js",
"build:push": "npm run build && git add . && git commit -m \"Build: $(date '+%B %d, %Y, %I:%M:%S %p')\" && git push",
"deploy:major": "npm version major && npm run build:push && git push --tags && npm publish --tag latest",
"deploy:minor": "npm version minor && npm run build:push && git push --tags && npm publish --tag latest",
"deploy:patch": "npm version patch && npm run build:push && git push --tags && npm publish --tag latest",
"lint": "eslint src && tsc --noEmit",
"lint:fix": "eslint src --fix && prettier --write src",
"format": "prettier --write src"
},
"devDependencies": {
"@commitlint/types": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@types/ini": "^4.1.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@azure/core-auth": "^1.7.2",
"@azure/identity": "^4.4.1",
"@azure/openai": "^2.0.0-beta.1",
"@clack/prompts": "^0.7.0",
"@dqbd/tiktoken": "^1.0.16",
"@octokit/webhooks-schemas": "^7.5.1",
"@octokit/webhooks-types": "^7.5.1",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cleye": "^1.3.2",
"execa": "^9.4.0",
"ignore": "^6.0.2",
"ini": "^5.0.0",
"inquirer": "^9.3.1",
"openai": "^4.62.1"
}
}