-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 786 Bytes
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
{
"name": "auto-commit",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"eslint": "^10.2.0",
"typescript-eslint": "^8.58.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"commander": "^14.0.3",
"openai": "^6.33.0"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test:unit": "bun test test/unittests/",
"test:e2e:openai": "E2E_OPENAI_API_KEY=$E2E_OPENAI_API_KEY bun test test/e2e/",
"test:e2e:deepseek": "E2E_DEEPSEEK_API_KEY=$E2E_DEEPSEEK_API_KEY bun test test/e2e/",
"test:e2e:ollama": "E2E_OLLAMA_BASE_URL=$E2E_OLLAMA_BASE_URL E2E_OLLAMA_MODEL=$E2E_OLLAMA_MODEL bun test test/e2e/"
}
}