opencommit 3.2.7 → 3.2.9

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 (3) hide show
  1. package/README.md +14 -1
  2. package/out/cli.cjs +10287 -7631
  3. package/package.json +12 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencommit",
3
- "version": "3.2.7",
3
+ "version": "3.2.9",
4
4
  "description": "Auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
5
5
  "keywords": [
6
6
  "git",
@@ -44,7 +44,7 @@
44
44
  "ollama:start": "OCO_AI_PROVIDER='ollama' node ./out/cli.cjs",
45
45
  "dev": "ts-node ./src/cli.ts",
46
46
  "dev:gemini": "OCO_AI_PROVIDER='gemini' ts-node ./src/cli.ts",
47
- "build": "rimraf out && node esbuild.config.js",
47
+ "build": "npx rimraf out && node esbuild.config.js",
48
48
  "build:push": "npm run build && git add . && git commit -m 'build' && git push",
49
49
  "deploy": "npm publish --tag latest",
50
50
  "deploy:build": "npm run build:push && git push --tags && npm run deploy",
@@ -67,14 +67,15 @@
67
67
  "@types/inquirer": "^9.0.3",
68
68
  "@types/jest": "^29.5.12",
69
69
  "@types/node": "^16.18.14",
70
- "@typescript-eslint/eslint-plugin": "^5.45.0",
71
- "@typescript-eslint/parser": "^5.45.0",
70
+ "@typescript-eslint/eslint-plugin": "^8.29.0",
71
+ "@typescript-eslint/parser": "^8.29.0",
72
72
  "cli-testing-library": "^2.0.2",
73
73
  "dotenv": "^16.0.3",
74
- "esbuild": "^0.15.18",
75
- "eslint": "^8.28.0",
74
+ "esbuild": "^0.25.5",
75
+ "eslint": "^9.24.0",
76
76
  "jest": "^29.7.0",
77
77
  "prettier": "^2.8.4",
78
+ "rimraf": "^6.0.1",
78
79
  "ts-jest": "^29.1.2",
79
80
  "ts-node": "^10.9.1",
80
81
  "typescript": "^4.9.3"
@@ -82,7 +83,7 @@
82
83
  "dependencies": {
83
84
  "@actions/core": "^1.10.0",
84
85
  "@actions/exec": "^1.1.1",
85
- "@actions/github": "^5.1.1",
86
+ "@actions/github": "^6.0.1",
86
87
  "@anthropic-ai/sdk": "^0.19.2",
87
88
  "@azure/openai": "^1.0.0-beta.12",
88
89
  "@clack/prompts": "^0.6.1",
@@ -102,5 +103,9 @@
102
103
  "openai": "^4.57.0",
103
104
  "punycode": "^2.3.1",
104
105
  "zod": "^3.23.8"
106
+ },
107
+ "overrides": {
108
+ "ajv": "^8.17.1",
109
+ "whatwg-url": "^14.0.0"
105
110
  }
106
111
  }