@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.
Files changed (2) hide show
  1. package/README.md +2 -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 @vector/vector-sdk
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 '@vector/vector-sdk';
21
+ import { VectorBotClient } from '@nekosuneprojects/vector-sdk';
22
22
 
23
23
  const client = new VectorBotClient({
24
24
  privateKey: process.env.NOSTR_PRIVATE_KEY,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nekosuneprojects/vector-sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Node.js reimplementation of the Vector Bot SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",