-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "commitvibe",
"version": "0.1.0",
"description": "Generate meaningful git commit messages with LLMs",
"main": "dist/index.js",
"bin": {
"commitvibe": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node --no-deprecation dist/index.js",
"dev": "node --no-deprecation -r ts-node/register src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"dev:mock": "COMMITVIBE_PROVIDER=mock node --no-deprecation -r ts-node/register src/index.ts"
},
"keywords": [
"git",
"commit",
"message",
"ai",
"llm",
"openai",
"cli"
],
"author": "Igor Lilic <igorlilic@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"clipboardy": "2.3.0",
"commander": "^13.1.0",
"dotenv": "^16.3.1",
"inquirer": "^12.5.0",
"openai": "^4.0.0",
"simple-git": "^3.19.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.3",
"@types/node": "^22.13.13",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}