patchy-cli 0.0.4-pr.154.e427e8f → 0.0.4-pr.156.70b856a

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/package.json +8 -7
  2. package/schema.json +31 -0
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "patchy-cli",
3
- "version": "0.0.4-pr.154.e427e8f",
3
+ "version": "0.0.4-pr.156.70b856a",
4
4
  "description": "A CLI tool for managing Git patch workflows.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "patchy": "./bin/patchy.cjs"
8
8
  },
9
9
  "files": [
10
- "bin"
10
+ "bin",
11
+ "schema.json"
11
12
  ],
12
13
  "scripts": {
13
14
  "build": "bun run ./scripts/build.ts",
@@ -60,11 +61,11 @@
60
61
  "url": "https://github.com/richardgill/patchy"
61
62
  },
62
63
  "optionalDependencies": {
63
- "patchy-cli-linux-x64": "0.0.4-pr.154.e427e8f",
64
- "patchy-cli-linux-arm64": "0.0.4-pr.154.e427e8f",
65
- "patchy-cli-darwin-x64": "0.0.4-pr.154.e427e8f",
66
- "patchy-cli-darwin-arm64": "0.0.4-pr.154.e427e8f",
67
- "patchy-cli-windows-x64": "0.0.4-pr.154.e427e8f"
64
+ "patchy-cli-linux-x64": "0.0.4-pr.156.70b856a",
65
+ "patchy-cli-linux-arm64": "0.0.4-pr.156.70b856a",
66
+ "patchy-cli-darwin-x64": "0.0.4-pr.156.70b856a",
67
+ "patchy-cli-darwin-arm64": "0.0.4-pr.156.70b856a",
68
+ "patchy-cli-windows-x64": "0.0.4-pr.156.70b856a"
68
69
  },
69
70
  "publishConfig": {
70
71
  "access": "public"
package/schema.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "title": "Patchy Configuration",
3
+ "description": "Configuration file for patchy-cli, a tool for managing Git patch workflows",
4
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5
+ "type": "object",
6
+ "properties": {
7
+ "repo_url": {
8
+ "type": "string"
9
+ },
10
+ "repo_dir": {
11
+ "type": "string"
12
+ },
13
+ "clones_dir": {
14
+ "type": "string"
15
+ },
16
+ "patches_dir": {
17
+ "type": "string"
18
+ },
19
+ "ref": {
20
+ "type": "string"
21
+ },
22
+ "verbose": {
23
+ "default": false,
24
+ "type": "boolean"
25
+ },
26
+ "$schema": {
27
+ "type": "string"
28
+ }
29
+ },
30
+ "additionalProperties": false
31
+ }