@solidus-network/sdk 0.6.1 → 0.6.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 (1) hide show
  1. package/package.json +29 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solidus-network/sdk",
3
- "version": "0.6.1",
4
- "description": "Solidus Network SDK — DID resolution, verifiable credential issuance and verification, SD-JWT VC (EUDI-compatible), and on-chain queries via JSON-RPC.",
3
+ "version": "0.6.2",
4
+ "description": "Solidus Network SDK — DID resolution, verifiable credential issuance and verification, and on-chain queries via JSON-RPC.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -9,28 +9,49 @@
9
9
  ".": {
10
10
  "import": "./dist/index.js",
11
11
  "types": "./dist/index.d.ts"
12
+ },
13
+ "./sdjwt": {
14
+ "import": "./dist/sdjwt/index.js",
15
+ "types": "./dist/sdjwt/index.d.ts"
12
16
  }
13
17
  },
14
- "files": ["dist", "README.md", "LICENSE"],
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
15
23
  "dependencies": {
16
24
  "@noble/ed25519": "^2.1.0",
17
25
  "@noble/hashes": "^1.5.0",
26
+ "@sd-jwt/jwt-status-list": "^0.19.0",
18
27
  "@sd-jwt/sd-jwt-vc": "^0.19.0",
19
28
  "@sd-jwt/types": "^0.19.0",
20
- "@solidus-network/auth": "0.6.1",
21
- "@solidus-network/types": "0.6.1",
29
+ "@solidus-network/auth": "0.6.2",
30
+ "@solidus-network/types": "0.6.2",
22
31
  "bs58": "^6.0.0",
23
32
  "postgres": "^3.4.4"
24
33
  },
25
- "keywords": ["solidus", "did", "verifiable-credentials", "vc", "sd-jwt", "sd-jwt-vc", "eudi", "blockchain", "decentralized-identity", "sdk"],
34
+ "keywords": [
35
+ "solidus",
36
+ "did",
37
+ "verifiable-credentials",
38
+ "vc",
39
+ "blockchain",
40
+ "decentralized-identity",
41
+ "sdk"
42
+ ],
26
43
  "author": "Solidus Network (https://solidus.network)",
27
44
  "license": "Apache-2.0",
28
45
  "homepage": "https://solidus.network",
29
- "bugs": { "url": "https://github.com/solidusnetwork/sdk/issues" },
46
+ "bugs": {
47
+ "url": "https://github.com/solidusnetwork/sdk/issues"
48
+ },
30
49
  "repository": {
31
50
  "type": "git",
32
51
  "url": "git+https://github.com/solidusnetwork/sdk.git",
33
52
  "directory": "sdk"
34
53
  },
35
- "publishConfig": { "access": "public" }
54
+ "publishConfig": {
55
+ "access": "public"
56
+ }
36
57
  }