git-coco 0.52.0 → 0.54.0
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.d.ts +47 -0
- package/dist/index.esm.mjs +1364 -156
- package/dist/index.js +1364 -156
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-coco",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.0",
|
|
4
4
|
"description": "zero-effort git commits with coco.",
|
|
5
5
|
"author": "gfargo <ghfargo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"test:publish": "npm run lint && npm run build && npm run test:cli && npm pack --dry-run",
|
|
42
42
|
"test:cli": "tsx bin/smokeCli.ts",
|
|
43
43
|
"bench": "tsx bin/benchmark.ts",
|
|
44
|
-
"scenario": "
|
|
44
|
+
"scenario": "tsx bin/scenarioRunner.ts",
|
|
45
45
|
"eval:structural-extract": "tsx bin/structuralExtractEval.ts",
|
|
46
46
|
"pretest:jest": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
47
47
|
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"coco:esm": "node dist/index.esm.mjs"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@commitlint/types": "^
|
|
64
|
-
"@gfargo/git-scenarios": "^0.
|
|
63
|
+
"@commitlint/types": "^21.0.1",
|
|
64
|
+
"@gfargo/git-scenarios": "^0.5.0",
|
|
65
65
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
66
66
|
"@rollup/plugin-eslint": "^9.0.5",
|
|
67
67
|
"@rollup/plugin-json": "^6.0.0",
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
"chalk": "4.1.2",
|
|
106
106
|
"diff": "9.0.0",
|
|
107
107
|
"ini": "7.0.0",
|
|
108
|
-
"ink": "7.0.
|
|
109
|
-
"minimatch": "^10.2.
|
|
108
|
+
"ink": "7.0.3",
|
|
109
|
+
"minimatch": "^10.2.5",
|
|
110
110
|
"ora": "5.4.1",
|
|
111
111
|
"p-queue": "5.0.0",
|
|
112
112
|
"performance-now": "2.1.0",
|
|
@@ -119,6 +119,9 @@
|
|
|
119
119
|
"yargs": "17.7.2"
|
|
120
120
|
},
|
|
121
121
|
"resolutions": {
|
|
122
|
-
"cross-spawn": "7.0.6"
|
|
122
|
+
"cross-spawn": "7.0.6",
|
|
123
|
+
"brace-expansion": "^5.0.6",
|
|
124
|
+
"@anthropic-ai/sdk": "^0.91.1",
|
|
125
|
+
"ip-address": "^10.1.1"
|
|
123
126
|
}
|
|
124
127
|
}
|