@nekosuneprojects/vector-sdk 1.0.1 → 1.0.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.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ A JavaScript/TypeScript port of the Vector Bot SDK that mirrors the structure of
|
|
|
12
12
|
## Getting Started
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install @
|
|
15
|
+
npm install @nekosuneprojects/vector-sdk
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Then import the pieces you need:
|
|
19
19
|
|
|
20
20
|
```ts
|
|
21
|
-
import { VectorBotClient } from '@
|
|
21
|
+
import { VectorBotClient } from '@nekosuneprojects/vector-sdk';
|
|
22
22
|
|
|
23
23
|
const client = new VectorBotClient({
|
|
24
24
|
privateKey: process.env.NOSTR_PRIVATE_KEY,
|