-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "commit-split",
"type": "module",
"version": "0.0.0-alpha2",
"packageManager": "[email protected]",
"description": "A tool that uses AI to automatically split code changes into multiple commits with relevant titles",
"author": "MidnightCrowing",
"license": "MIT",
"keywords": [
"commit",
"git",
"ai",
"automated",
"commit-splitting",
"code"
],
"main": "main.ts",
"bin": {
"commit-split": "./dist/main.js",
"cmsplit": "./dist/main.js"
},
"files": [
"LICENSE",
"README.md",
"dist",
"package.json",
"scripts"
],
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc -p tsconfig.build.json",
"test": "jest --config jest.config.js",
"preuninstall": "node ./scripts/cleanup.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"knip": "knip"
},
"dependencies": {
"chalk": "^5.4.0",
"commander": "^12.1.0",
"inquirer": "^12.2.0",
"openai": "^4.77.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"knip": "^5.41.1",
"lint-staged": "^15.2.11",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}