@liveauth-labs/sdk 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 +2 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -37,7 +37,7 @@ Most humans never see the Lightning step.
37
37
  ## Installation (JavaScript)
38
38
 
39
39
  ```bash
40
- npm install @liveauth/sdk
40
+ npm install @liveauth-labs/sdk
41
41
  ```
42
42
 
43
43
  ---
@@ -45,7 +45,7 @@ npm install @liveauth/sdk
45
45
  ## Basic Usage
46
46
 
47
47
  ```ts
48
- import { LiveAuth } from '@liveauth/sdk';
48
+ import { LiveAuth } from '@liveauth-labs/sdk';
49
49
 
50
50
  const liveauth = new LiveAuth({
51
51
  publicKey: 'la_pk_XXXXXXXX'
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@liveauth-labs/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
+ "description": "LiveAuth browser SDK (PoW + Lightning human verification)",
4
5
  "type": "module",
5
6
  "main": "./dist/index.js",
6
7
  "module": "./dist/index.mjs",