This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
forked from Nutlope/aicommits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 1.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@rconjoe/aicommits",
"version": "0.0.5b",
"description": "Writes your git commit messages for you with AI",
"keywords": [
"ai",
"git",
"commit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rconjoe/aicommits.git"
},
"author": "Hassan El Mghari (@nutlope), Joe Carlton<@rconjoe>",
"type": "module",
"files": [
"dist"
],
"bin": {
"aicommits": "dist/cli.mjs",
"aic": "dist/cli.mjs"
},
"scripts": {
"prepare": "simple-git-hooks",
"build": "pkgroll --minify",
"lint": "eslint --cache .",
"type-check": "tsc",
"test": "tsx tests",
"prepack": "pnpm build"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.ts": "eslint --cache"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.2"
},
"devDependencies": {
"@clack/prompts": "^0.6.1",
"@pvtnbr/eslint-config": "^0.33.0",
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.14.2",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"eslint": "^8.35.0",
"execa": "^7.0.0",
"fs-fixture": "^1.2.0",
"https-proxy-agent": "^5.0.1",
"ini": "^3.0.1",
"kolorist": "^1.7.0",
"lint-staged": "^13.1.2",
"manten": "^0.7.0",
"openai": "^3.2.1",
"pkgroll": "^1.9.0",
"simple-git-hooks": "^2.8.1",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": "@pvtnbr",
"rules": {
"unicorn/no-process-exit": "off"
},
"overrides": [
{
"files": "./src/commands/prepare-commit-msg-hook.ts",
"rules": {
"unicorn/prevent-abbreviations": "off"
}
},
{
"files": "./src/**/*.ts",
"rules": {
"max-len": "off"
}
}
]
},
"release": {
"branches": [
"main"
]
},
"pnpm": {
"patchedDependencies": {
"@clack/[email protected]": "patches/@[email protected]"
}
}
}