-
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) · 2.13 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.13 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": "smart-commit-ai",
"version": "1.1.5",
"description": "Smart Commit Tool - глобальный инструмент для генерации осмысленных сообщений коммитов с использованием ИИ",
"main": "lib/index.js",
"bin": {
"smart-commit": "bin/smart-commit.js",
"smc": "bin/smart-commit.js",
"smit": "bin/smart-commit.js"
},
"scripts": {
"build": "tsc",
"start": "node bin/smart-commit.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"version:patch": "npm version patch && npm run build",
"version:minor": "npm version minor && npm run build",
"version:major": "npm version major && npm run build"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"git",
"commit",
"ai",
"gpt",
"conventional-commits",
"cli",
"tool"
],
"author": "Eugene (prod-broke-again)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prod-broke-again/smart-commit.git"
},
"bugs": {
"url": "https://github.com/prod-broke-again/smart-commit/issues"
},
"homepage": "https://github.com/prod-broke-again/smart-commit#readme",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"joi": "^17.9.2",
"ora": "^7.0.1",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/ssh2": "^1.15.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}