forked from di-sukharev/opencommit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.11 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
{
"name": "@dvla/opencommit",
"version": "1.0.1",
"description": "Auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
"keywords": [
"git",
"chatgpt",
"gpt",
"ai",
"openai",
"opencommit",
"aicommit",
"aicommits",
"gptcommit",
"commit"
],
"main": "cli.js",
"bin": {
"opencommit": "./out/cli.cjs",
"oco": "./out/cli.cjs"
},
"repository": {
"url": "https://github.com/dvla/opencommit"
},
"type": "module",
"author": "https://github.com/di-sukharev",
"license": "MIT",
"files": [
"out/cli.cjs",
"out/tiktoken_bg.wasm"
],
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"registry": "https://nexus.tooling.dvla.gov.uk/repository/npm-private"
},
"scripts": {
"watch": "npm run -S build -- --sourcemap --watch",
"start": "node ./out/cli.cjs",
"dev": "ts-node ./src/cli.ts",
"build": "rimraf out && node esbuild.config.js",
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
"deploy": "npm version patch && npm run build:push && git push --tags && npm publish --tag latest",
"lint": "eslint src --ext ts && tsc --noEmit",
"format": "prettier --write src"
},
"devDependencies": {
"@commitlint/types": "^19.0.3",
"@types/ini": "^4.1.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@clack/prompts": "^0.6.1",
"@dqbd/tiktoken": "^1.0.13",
"@octokit/webhooks-schemas": "^7.3.2",
"@octokit/webhooks-types": "^7.3.2",
"axios": "^1.6.7",
"chalk": "^5.3.0",
"cleye": "^1.3.2",
"crypto": "^1.0.1",
"execa": "^8.0.1",
"ignore": "^5.3.1",
"ini": "^4.1.1",
"inquirer": "^9.2.15",
"openai": "^3.2.1"
}
}