@j6e/pi-md-web-surfer 0.9.1 → 0.9.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 +1 -3
  2. package/package.json +13 -3
package/README.md CHANGED
@@ -75,9 +75,7 @@ Then run `pi` normally. The tools appear alongside `read`, `write`, `edit`, etc.
75
75
  ### As a pi package
76
76
 
77
77
  ```bash
78
- pi install /path/to/pi-md-web-surfer
79
- # or once published:
80
- # pi install npm:@j6e/pi-md-web-surfer
78
+ pi install npm:@j6e/pi-md-web-surfer
81
79
  ```
82
80
 
83
81
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j6e/pi-md-web-surfer",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Pi extension: fetch web pages as markdown and search the web, powered by Jina AI",
5
5
  "license": "MIT",
6
6
  "author": "Joan G. Esquerdo",
@@ -21,10 +21,20 @@
21
21
  "test:watch": "vitest",
22
22
  "check": "tsc --noEmit"
23
23
  },
24
+ "dependencies": {
25
+ "typebox": "^1.1.24"
26
+ },
24
27
  "peerDependencies": {
25
28
  "@earendil-works/pi-coding-agent": "*",
26
- "@earendil-works/pi-tui": "*",
27
- "typebox": "*"
29
+ "@earendil-works/pi-tui": "*"
30
+ },
31
+ "peerDependenciesMeta": {
32
+ "@earendil-works/pi-coding-agent": {
33
+ "optional": true
34
+ },
35
+ "@earendil-works/pi-tui": {
36
+ "optional": true
37
+ }
28
38
  },
29
39
  "devDependencies": {
30
40
  "@types/node": "^22.0.0",