opencommit 3.2.1 → 3.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/out/cli.cjs +19444 -53
  2. package/package.json +10 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencommit",
3
- "version": "3.2.1",
3
+ "version": "3.2.5",
4
4
  "description": "Auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
5
5
  "keywords": [
6
6
  "git",
@@ -17,11 +17,11 @@
17
17
  ],
18
18
  "main": "cli.js",
19
19
  "bin": {
20
- "opencommit": "./out/cli.cjs",
21
- "oco": "./out/cli.cjs"
20
+ "opencommit": "out/cli.cjs",
21
+ "oco": "out/cli.cjs"
22
22
  },
23
23
  "repository": {
24
- "url": "https://github.com/di-sukharev/opencommit"
24
+ "url": "git+https://github.com/di-sukharev/opencommit.git"
25
25
  },
26
26
  "type": "module",
27
27
  "author": "https://github.com/di-sukharev",
@@ -58,7 +58,8 @@
58
58
  "test:unit:docker": "npm run test:docker-build && DOCKER_CONTENT_TRUST=0 docker run --rm oco-test npm run test:unit",
59
59
  "test:e2e": "npm run test:e2e:setup && jest test/e2e",
60
60
  "test:e2e:setup": "sh test/e2e/setup.sh",
61
- "test:e2e:docker": "npm run test:docker-build && DOCKER_CONTENT_TRUST=0 docker run --rm oco-test npm run test:e2e"
61
+ "test:e2e:docker": "npm run test:docker-build && DOCKER_CONTENT_TRUST=0 docker run --rm oco-test npm run test:e2e",
62
+ "mlx:start": "OCO_AI_PROVIDER='mlx' node ./out/cli.cjs"
62
63
  },
63
64
  "devDependencies": {
64
65
  "@commitlint/types": "^17.4.4",
@@ -87,6 +88,7 @@
87
88
  "@clack/prompts": "^0.6.1",
88
89
  "@dqbd/tiktoken": "^1.0.2",
89
90
  "@google/generative-ai": "^0.11.4",
91
+ "@mistralai/mistralai": "^1.3.5",
90
92
  "@octokit/webhooks-schemas": "^6.11.0",
91
93
  "@octokit/webhooks-types": "^6.11.0",
92
94
  "axios": "^1.3.4",
@@ -97,6 +99,8 @@
97
99
  "ignore": "^5.2.4",
98
100
  "ini": "^3.0.1",
99
101
  "inquirer": "^9.1.4",
100
- "openai": "^4.57.0"
102
+ "openai": "^4.57.0",
103
+ "punycode": "^2.3.1",
104
+ "zod": "^3.23.8"
101
105
  }
102
106
  }