patchy-cli 0.0.22 → 0.0.23
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/package.json +16 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dev": "bun run src/cli.ts",
|
|
23
23
|
"knip": "knip-bun",
|
|
24
24
|
"local-ci": "bun run scripts/local-ci.ts",
|
|
25
|
-
"prepare": "[ -n \"$CI\" ] || lefthook install",
|
|
25
|
+
"prepare": "[ \"$DEPENDABOT\" = true ] || [ -n \"$CI\" ] || lefthook install",
|
|
26
26
|
"typecheck": "tsgo --noEmit",
|
|
27
27
|
"test": "bun run scripts/test.ts",
|
|
28
28
|
"test-watch": "bun test --watch",
|
|
@@ -32,24 +32,27 @@
|
|
|
32
32
|
"@biomejs/biome": "=2.3.10",
|
|
33
33
|
"@changesets/changelog-github": "=0.5.2",
|
|
34
34
|
"@changesets/cli": "=2.29.8",
|
|
35
|
-
"@types/node": "=
|
|
36
|
-
"@
|
|
35
|
+
"@types/node": "=25.0.3",
|
|
36
|
+
"@types/pluralize": "=0.0.33",
|
|
37
|
+
"@typescript/native-preview": "=7.0.0-dev.20251230.1",
|
|
37
38
|
"bun-types": "=1.3.4",
|
|
38
|
-
"knip": "=5.
|
|
39
|
-
"lefthook": "=2.0.
|
|
39
|
+
"knip": "=5.78.0",
|
|
40
|
+
"lefthook": "=2.0.13",
|
|
40
41
|
"syncpack": "=13.0.4",
|
|
41
42
|
"typescript": "=5.9.3"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
|
-
"@clack/prompts": "=1.0.0-alpha.
|
|
45
|
+
"@clack/prompts": "=1.0.0-alpha.9",
|
|
45
46
|
"@stricli/core": "=1.2.4",
|
|
46
47
|
"chalk": "=5.6.2",
|
|
47
48
|
"diff": "=8.0.2",
|
|
48
49
|
"es-toolkit": "=1.43.0",
|
|
49
50
|
"jsonc-parser": "=3.3.1",
|
|
51
|
+
"ora": "=9.0.0",
|
|
52
|
+
"pluralize": "=8.0.0",
|
|
50
53
|
"simple-git": "=3.30.0",
|
|
51
54
|
"untildify": "=6.0.0",
|
|
52
|
-
"zod": "=4.1
|
|
55
|
+
"zod": "=4.2.1"
|
|
53
56
|
},
|
|
54
57
|
"peerDependencies": {
|
|
55
58
|
"typescript": ">=5.0.4"
|
|
@@ -64,11 +67,11 @@
|
|
|
64
67
|
"url": "https://github.com/richardgill/patchy"
|
|
65
68
|
},
|
|
66
69
|
"optionalDependencies": {
|
|
67
|
-
"patchy-cli-linux-x64": "0.0.
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.
|
|
70
|
+
"patchy-cli-linux-x64": "0.0.23",
|
|
71
|
+
"patchy-cli-linux-arm64": "0.0.23",
|
|
72
|
+
"patchy-cli-darwin-x64": "0.0.23",
|
|
73
|
+
"patchy-cli-darwin-arm64": "0.0.23",
|
|
74
|
+
"patchy-cli-windows-x64": "0.0.23"
|
|
72
75
|
},
|
|
73
76
|
"publishConfig": {
|
|
74
77
|
"access": "public"
|