sats-connect 2.5.0 → 2.6.0-3166e9f

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 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -62,6 +62,7 @@ For full documentation, visit [docs.xverse.app](https://docs.xverse.app/sats-con
62
62
  ```bash
63
63
  npm run build
64
64
  ```
65
+
65
66
  ### Run example app
66
67
 
67
68
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sats-connect",
3
- "version": "2.5.0",
3
+ "version": "2.6.0-3166e9f",
4
4
  "main": "dist/index.mjs",
5
5
  "files": [
6
6
  "dist"
@@ -10,7 +10,7 @@
10
10
  "build": "npm run clean && tsup src/index.ts --format esm --dts",
11
11
  "build:watch": "npm run clean && tsup src/index.ts --format esm --dts --watch",
12
12
  "dev:build": "tsup src/index.ts --format esm --dts --watch",
13
- "dev:example": "cd example && npm start",
13
+ "dev:example": "cd example && npm run dev",
14
14
  "clean": "rimraf dist",
15
15
  "lint": "prettier --write .",
16
16
  "prepare": "husky install || true"
@@ -24,7 +24,7 @@
24
24
  ]
25
25
  },
26
26
  "dependencies": {
27
- "@sats-connect/core": "0.0.15",
27
+ "@sats-connect/core": "0.1.2",
28
28
  "@sats-connect/make-default-provider-config": "0.0.5",
29
29
  "@sats-connect/ui": "0.0.6"
30
30
  },