faberwright 0.3.0 → 0.3.1

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 +1 -1
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -60,7 +60,7 @@ Faber is Codewright renamed (the npm name was taken between build and release).
60
60
  Node.js ≥ 22.5 (uses built-in `node:sqlite` — **zero native dependencies**; installs never fail on compilation). Two pure-JS runtime deps: `diff`, `picocolors`.
61
61
 
62
62
  ```bash
63
- npm install -g faber
63
+ npm install -g faberwright
64
64
  export ANTHROPIC_API_KEY=sk-ant-... # add to ~/.zshrc to persist
65
65
  faber # you're in
66
66
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "faberwright",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Faber: an agentic AI coding assistant for your terminal — streams, edits with diff approval, runs your tests, and remembers your project across sessions.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -45,5 +45,13 @@
45
45
  "developer-tools",
46
46
  "terminal",
47
47
  "llm"
48
- ]
48
+ ],
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/JibanKumar-cloud/faber.git"
52
+ },
53
+ "homepage": "https://github.com/JibanKumar-cloud/faber#readme",
54
+ "bugs": {
55
+ "url": "https://github.com/JibanKumar-cloud/faber/issues"
56
+ }
49
57
  }