-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.98 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
{
"name": "llmc",
"version": "0.1.6",
"description": "AI-powered commit message generator",
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.0.0",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.4",
"commit-and-tag-version": "^12.5.1",
"execa": "^9.3.0",
"ink-testing-library": "^4.0.0",
"vite": "^7.0.1",
"vite-plugin-node": "^7.0.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"bin": {
"llmc": "./dist/index.js"
},
"type": "module",
"files": [
"dist/"
],
"engines": {
"node": ">=18"
},
"keywords": [
"git",
"commit",
"ai",
"conventional-commits"
],
"scripts": {
"format": "npx dprint fmt",
"build": "npx dprint fmt && vite build",
"test": "npx dprint fmt && vitest --run",
"test:watch": "vitest",
"test:integration": "VITEST_INTEGRATION=1 vitest --run integration-api.test.ts",
"test:all": "VITEST_INTEGRATION=1 vitest --run",
"lint": "npx dprint fmt && tsc --noEmit",
"prepublishOnly": "npm run build",
"release": "commit-and-tag-version"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/cerebras": "^1.0.21",
"@ai-sdk/cohere": "^1.2.10",
"@ai-sdk/deepseek": "^0.2.14",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/groq": "^1.2.9",
"@ai-sdk/mistral": "^1.2.8",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/perplexity": "^1.1.9",
"@ai-sdk/provider": "^1.1.3",
"@ai-sdk/replicate": "^0.2.8",
"@ai-sdk/togetherai": "^0.2.14",
"@ai-sdk/vercel": "^0.0.3",
"@ai-sdk/xai": "^1.2.16",
"@iarna/toml": "^2.2.5",
"ai": "^4.3.16",
"ink": "^6.0.1",
"ink-spinner": "^5.0.0",
"react": "^19.1.0",
"simple-git": "^3.28.0",
"yargs": "^18.0.0",
"zod": "^3.25.69"
},
"author": "",
"license": "BSD 3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/marclove/llmc"
}
}