-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "@m7medvision/lazycommit",
"description": "let ai write commit messages for you",
"version": "1.3.21",
"author": "Mohammed Al Jahwari <scale-stray-flinch@duck.com>",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m7medvision/lazycommit.git"
},
"main": "dist/index.js",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"bumpp": "^9.7.1",
"bun-plugin-dts": "^0.2.4",
"dotenv": "^16.4.5",
"typescript": "^5.6.3"
},
"bin": {
"lazycommit": "dist/index.js"
},
"bugs": "https://github.com/m7medvision/lazycommit/issues",
"files": [
"dist"
],
"homepage": "https://github.com/m7medvision/lazycommit",
"license": "MIT",
"scripts": {
"start": "bun run src/index.ts",
"build": "bun run build.mjs",
"prepublishOnly": "bun run build",
"release": "bumpp && npm publish",
"lint": "biome check src",
"lint:fix": "biome format src --write"
},
"type": "module",
"dependencies": {
"@ai-sdk/google": "^1.0.11",
"@ai-sdk/openai": "^1.0.10",
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"@google/generative-ai": "^0.12.0",
"ai": "^4.0.20",
"cleye": "^1.3.2",
"openai": "^4.68.1",
"simple-git": "^3.27.0"
}
}