@amanm/openpaw 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -18,10 +18,11 @@ OpenPaw is a Bun + TypeScript local agent runtime with:
18
18
  Global install (recommended for end users):
19
19
 
20
20
  ```bash
21
- npm i -g openpaw
21
+ npm i -g @amanm/openpaw
22
22
  ```
23
23
 
24
- The first `openpaw` run checks for Bun. If Bun is missing on macOS/Linux, OpenPaw prompts to install it automatically.
24
+ After install you can run `openpaw` (and `opaw`) commands directly.
25
+ The first run checks for Bun. If Bun is missing on macOS/Linux, OpenPaw prompts to install it automatically.
25
26
 
26
27
  Windows note: Bun auto-install is not performed yet. Install Bun manually from `https://bun.sh/docs/installation`.
27
28
 
package/package.json CHANGED
@@ -1,11 +1,20 @@
1
1
  {
2
2
  "name": "@amanm/openpaw",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Local Bun + TypeScript agent runtime with TUI and messaging gateway adapters.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/amanmprojects/openpaw.git"
8
+ },
9
+ "homepage": "https://github.com/amanmprojects/openpaw",
10
+ "bugs": {
11
+ "url": "https://github.com/amanmprojects/openpaw/issues"
12
+ },
5
13
  "license": "MIT",
6
14
  "type": "module",
7
15
  "bin": {
8
- "openpaw": "bin/openpaw.cjs"
16
+ "openpaw": "bin/openpaw.cjs",
17
+ "opaw": "bin/openpaw.cjs"
9
18
  },
10
19
  "scripts": {
11
20
  "openpaw": "bun run ./cli/openpaw.tsx",