@activeledger/sdk-web 2.0.0 → 2.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.
Files changed (1) hide show
  1. package/package.json +8 -7
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@activeledger/sdk-web",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Activeledger SDK for browsers and React Native - secp256k1 signing via @noble/curves (audited, pure JS, no native/WebCrypto dependency)",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
7
7
  "types": "./lib/index.d.ts",
8
8
  "scripts": {
9
9
  "build": "tsc",
10
- "prepublishOnly": "npm run build"
10
+ "prepublishOnly": "npm run build",
11
+ "test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config jest.config.mjs"
11
12
  },
12
- "homepage": "https://github.com/activeledger/SDK-NodeJS",
13
+ "homepage": "https://github.com/activeledger/SDK-JS",
13
14
  "keywords": [
14
15
  "activeledger",
15
16
  "web",
@@ -24,11 +25,11 @@
24
25
  ],
25
26
  "repository": {
26
27
  "type": "git",
27
- "url": "git+https://github.com/activeledger/SDK-NodeJS.git",
28
+ "url": "git+https://github.com/activeledger/SDK-JS.git",
28
29
  "directory": "packages/web"
29
30
  },
30
31
  "bugs": {
31
- "url": "https://github.com/activeledger/SDK-NodeJS/issues"
32
+ "url": "https://github.com/activeledger/SDK-JS/issues"
32
33
  },
33
34
  "author": "Activeledger",
34
35
  "license": "MIT",
@@ -36,7 +37,7 @@
36
37
  "lib"
37
38
  ],
38
39
  "dependencies": {
39
- "@activeledger/sdk-core": "^2.0.0",
40
+ "@activeledger/sdk-core": "^2.0.1",
40
41
  "@noble/curves": "^2.4.0",
41
42
  "@noble/hashes": "^2.4.0",
42
43
  "@scure/bip39": "^2.4.0"
@@ -44,5 +45,5 @@
44
45
  "devDependencies": {
45
46
  "typescript": "^5.5.4"
46
47
  },
47
- "gitHead": "f07817691ebfc1dfd38d7c90aa5cb9a454ae4f89"
48
+ "gitHead": "a0e4e8c68c89dfbd9fba29c67391fbca609d9245"
48
49
  }