just-bash-util 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +12 -1
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,11 +1,14 @@
1
1
  # just-bash-util
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/just-bash-util)](https://www.npmjs.com/package/just-bash-util)
4
+ [![GitHub](https://img.shields.io/github/license/blindmansion/just-bash-util)](https://github.com/blindmansion/just-bash-util)
5
+
3
6
  CLI command framework, config file discovery, and path utilities for [just-bash](https://www.npmjs.com/package/just-bash).
4
7
 
5
8
  ## Install
6
9
 
7
10
  ```bash
8
- bun add just-bash-util just-bash
11
+ npm install just-bash-util just-bash
9
12
  ```
10
13
 
11
14
  ## Modules
@@ -135,6 +138,14 @@ relative("/a/b/c", "/a/d"); // "../../d"
135
138
 
136
139
  Requires [`just-bash`](https://www.npmjs.com/package/just-bash) ^2.9.6 — provides the `CommandContext` and `ExecResult` types used throughout.
137
140
 
141
+ ## Status
142
+
143
+ This project is in early development. Test coverage exists but is limited — expect gaps, especially around edge cases. Contributions and bug reports are welcome.
144
+
145
+ ## Disclaimer
146
+
147
+ This project is not affiliated with, endorsed by, or associated with Vercel or the just-bash project.
148
+
138
149
  ## License
139
150
 
140
151
  MIT
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "just-bash-util",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI command framework, config file discovery, and path utilities for just-bash",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "blindmansion",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/blindmansion/just-bash-util.git"
11
+ },
12
+ "homepage": "https://github.com/blindmansion/just-bash-util",
13
+ "bugs": {
14
+ "url": "https://github.com/blindmansion/just-bash-util/issues"
15
+ },
8
16
  "keywords": [
9
17
  "cli",
10
18
  "command",