-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.2 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
{
"name": "@negoziator/ai-commit",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"description": "Writes your git commit messages for you with AI",
"keywords": [
"ai",
"git",
"commit"
],
"license": "MIT",
"repository": "negoziator/ai-commit",
"author": "Lars Schou",
"type": "module",
"files": [
"dist"
],
"bin": {
"aicommit": "./dist/cli.mjs",
"aic": "./dist/cli.mjs"
},
"scripts": {
"build": "pkgroll --minify",
"lint": "npx eslint --no-cache .",
"type-check": "tsc",
"test": "tsx tests",
"prepack": "npm run build && clean-pkg-json"
},
"devDependencies": {
"@clack/prompts": "^0.10.0",
"@types/ini": "^4.0.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"eslint": "^8.51.0",
"execa": "^7.0.0",
"fs-fixture": "^2.0.0",
"https-proxy-agent": "^5.0.1",
"ini": "^4.0.0",
"kolorist": "^1.7.0",
"manten": "^1.0.0",
"openai": "^4.0.0",
"pkgroll": "^2.0.0",
"simple-git-hooks": "^2.8.1",
"tsx": "^4.0.0",
"typescript": "^4.9.5"
},
"release": {
"branches": [
"master"
]
}
}