@bacnh85/pi-web 0.1.0 → 0.1.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 +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,6 +4,14 @@ Pi extension for web search, readable page extraction, and Firecrawl scraping/cr
4
4
 
5
5
  ## Install
6
6
 
7
+ Install the published package from npm:
8
+
9
+ ```bash
10
+ pi install npm:@bacnh85/pi-web
11
+ ```
12
+
13
+ From this repository checkout, install only this extension package:
14
+
7
15
  ```bash
8
16
  cd extensions/pi-web
9
17
  npm install
@@ -14,6 +22,8 @@ pi install ./extensions/pi-web
14
22
  pi -e ./extensions/pi-web
15
23
  ```
16
24
 
25
+ The package manifest points Pi directly at `./index.ts`, so published npm installs and local installs load the same extension entrypoint.
26
+
17
27
  If you manually copy this directory instead of using `pi install`, run `npm install --omit=dev` in the copied `pi-web` directory so readable-content dependencies such as `@mozilla/readability` are present.
18
28
 
19
29
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bacnh85/pi-web",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pi extension for web search, page extraction, and Firecrawl scraping/crawling.",
5
5
  "type": "module",
6
6
  "license": "MIT",