git-coco 0.21.0 → 0.21.2
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.
- package/dist/index.esm.mjs +22 -2031
- package/dist/index.js +23 -2032
- package/package.json +5 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-coco",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.2",
|
|
4
4
|
"description": "zero-effort git commits with coco.",
|
|
5
5
|
"author": "gfargo <ghfargo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"build:schema": "tsx bin/generateSchema.ts",
|
|
31
31
|
"build:info": "tsx bin/generateBuildInfo.ts",
|
|
32
32
|
"build:watch": "rollup -c -w",
|
|
33
|
-
"clean": "rimraf dist && rimraf coverage",
|
|
33
|
+
"clean": "npx rimraf dist && npx rimraf coverage",
|
|
34
34
|
"lint": "eslint src",
|
|
35
35
|
"lint:fix": "eslint --fix src",
|
|
36
36
|
"test": "npm run test:jest && npm run test:publish",
|
|
@@ -49,26 +49,17 @@
|
|
|
49
49
|
"@rollup/plugin-eslint": "^9.0.5",
|
|
50
50
|
"@rollup/plugin-json": "^6.0.0",
|
|
51
51
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
52
|
-
"@types/
|
|
53
|
-
"@types/chunk-text": "^1.0.0",
|
|
54
|
-
"@types/common-tags": "^1.8.1",
|
|
55
|
-
"@types/diff": "^7.0.1",
|
|
52
|
+
"@types/diff": "^8.0.0",
|
|
56
53
|
"@types/ini": "^4.1.1",
|
|
57
|
-
"@types/inquirer": "^9.0.3",
|
|
58
54
|
"@types/jest": "^30.0.0",
|
|
59
55
|
"@types/node": "^24.0.8",
|
|
60
56
|
"@types/yargs": "^17.0.33",
|
|
61
57
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
62
58
|
"@typescript-eslint/parser": "^7.13.1",
|
|
63
59
|
"eslint": "^8.54.0",
|
|
64
|
-
"eslint-formatter-pretty": "^6.0.0",
|
|
65
60
|
"jest": "^30.0.5",
|
|
66
|
-
"jest-mock": "^29.5.0",
|
|
67
61
|
"release-it": "^18.1.2",
|
|
68
|
-
"rimraf": "^6.0.1",
|
|
69
62
|
"rollup": "^3.26.1",
|
|
70
|
-
"rollup-plugin-banner2": "^1.2.2",
|
|
71
|
-
"rollup-plugin-bin": "^1.0.0",
|
|
72
63
|
"rollup-plugin-dts": "^6.1.0",
|
|
73
64
|
"rollup-plugin-executable": "^1.6.3",
|
|
74
65
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
@@ -78,33 +69,29 @@
|
|
|
78
69
|
"ts-jest": "^29.1.0",
|
|
79
70
|
"ts-json-schema-generator": "^2.3.0",
|
|
80
71
|
"ts-node": "^10.9.1",
|
|
81
|
-
"tslib": "^2.5.3",
|
|
82
72
|
"tsx": "^4.16.5",
|
|
83
73
|
"typescript": "^5.4.5"
|
|
84
74
|
},
|
|
85
75
|
"dependencies": {
|
|
86
|
-
"@commitlint/cli": "^19.8.0",
|
|
87
76
|
"@commitlint/config-conventional": "^19.8.0",
|
|
88
77
|
"@commitlint/core": "^19.8.0",
|
|
89
78
|
"@commitlint/types": "^19.8.0",
|
|
90
79
|
"@inquirer/prompts": "3.3.0",
|
|
91
|
-
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
92
80
|
"@langchain/anthropic": "^0.3.14",
|
|
93
81
|
"@langchain/community": "^0.3.32",
|
|
94
82
|
"@langchain/core": "^0.3.40",
|
|
95
83
|
"@langchain/ollama": "^0.2.0",
|
|
96
84
|
"@langchain/openai": "^0.5.0",
|
|
97
85
|
"ajv": "^8.16.0",
|
|
98
|
-
"ajv-formats": "^3.0.1",
|
|
99
86
|
"chalk": "4.1.2",
|
|
100
|
-
"diff": "
|
|
87
|
+
"diff": "8.0.2",
|
|
101
88
|
"ini": "5.0.0",
|
|
102
89
|
"minimatch": "^9.0.5",
|
|
103
90
|
"ora": "5.4.1",
|
|
104
91
|
"p-queue": "5.0.0",
|
|
105
92
|
"performance-now": "2.1.0",
|
|
106
93
|
"pretty-ms": "7.0.1",
|
|
107
|
-
"simple-git": "3.
|
|
94
|
+
"simple-git": "3.28.0",
|
|
108
95
|
"tiktoken": "^1.0.21",
|
|
109
96
|
"yargs": "17.7.2"
|
|
110
97
|
},
|