deso-ag 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -4,7 +4,19 @@
4
4
 
5
5
  Search and view content across **Farcaster**, **Lens**, **Nostr**, and **Bluesky** from your terminal or programmatically from your agent.
6
6
 
7
- ## Setup
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install deso-ag
11
+ ```
12
+
13
+ Or to use as a CLI globally:
14
+
15
+ ```bash
16
+ npm install -g deso-ag
17
+ ```
18
+
19
+ ### From Source
8
20
 
9
21
  ```bash
10
22
  git clone https://github.com/sphairetra/deso-ag
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ const program = new Command();
13
13
  program
14
14
  .name('deso-ag')
15
15
  .description('CLI tool for aggregating posts from decentralized social protocols')
16
- .version('1.0.0');
16
+ .version('1.0.1');
17
17
  program
18
18
  .command('search [query]')
19
19
  .description('Search for posts across decentralized social networks')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deso-ag",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool for aggregating posts from decentralized social protocols (Farcaster, Lens, Nostr, Bluesky)",
5
5
  "main": "dist/lib.js",
6
6
  "bin": {