@cardanowall/sdk-ts 0.0.0
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.
- package/LICENSE +202 -0
- package/README.md +207 -0
- package/dist/client/index.cjs +2695 -0
- package/dist/client/index.cjs.map +1 -0
- package/dist/client/index.d.cts +397 -0
- package/dist/client/index.d.ts +397 -0
- package/dist/client/index.js +2641 -0
- package/dist/client/index.js.map +1 -0
- package/dist/conformance/cli.cjs +4901 -0
- package/dist/conformance/cli.cjs.map +1 -0
- package/dist/conformance/cli.d.cts +18 -0
- package/dist/conformance/cli.d.ts +18 -0
- package/dist/conformance/cli.js +4878 -0
- package/dist/conformance/cli.js.map +1 -0
- package/dist/fetch/index.cjs +335 -0
- package/dist/fetch/index.cjs.map +1 -0
- package/dist/fetch/index.d.cts +13 -0
- package/dist/fetch/index.d.ts +13 -0
- package/dist/fetch/index.js +323 -0
- package/dist/fetch/index.js.map +1 -0
- package/dist/fetch-outbound-BT5-NiYN.d.cts +76 -0
- package/dist/fetch-outbound-BT5-NiYN.d.ts +76 -0
- package/dist/hash/index.cjs +25 -0
- package/dist/hash/index.cjs.map +1 -0
- package/dist/hash/index.d.cts +1 -0
- package/dist/hash/index.d.ts +1 -0
- package/dist/hash/index.js +21 -0
- package/dist/hash/index.js.map +1 -0
- package/dist/identity/index.cjs +1388 -0
- package/dist/identity/index.cjs.map +1 -0
- package/dist/identity/index.d.cts +27 -0
- package/dist/identity/index.d.ts +27 -0
- package/dist/identity/index.js +1362 -0
- package/dist/identity/index.js.map +1 -0
- package/dist/ids/index.cjs +146 -0
- package/dist/ids/index.cjs.map +1 -0
- package/dist/ids/index.d.cts +55 -0
- package/dist/ids/index.d.ts +55 -0
- package/dist/ids/index.js +135 -0
- package/dist/ids/index.js.map +1 -0
- package/dist/index-BhnlWJAY.d.cts +10 -0
- package/dist/index-BhnlWJAY.d.ts +10 -0
- package/dist/index-Cg1QqVmA.d.cts +19 -0
- package/dist/index-Cg1QqVmA.d.ts +19 -0
- package/dist/index.cjs +7127 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +21 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +7004 -0
- package/dist/index.js.map +1 -0
- package/dist/merkle/index.cjs +396 -0
- package/dist/merkle/index.cjs.map +1 -0
- package/dist/merkle/index.d.cts +2 -0
- package/dist/merkle/index.d.ts +2 -0
- package/dist/merkle/index.js +387 -0
- package/dist/merkle/index.js.map +1 -0
- package/dist/types-B8Q3gW54.d.ts +123 -0
- package/dist/types-BQMtbRCb.d.cts +321 -0
- package/dist/types-BQMtbRCb.d.ts +321 -0
- package/dist/types-CLXdbjqr.d.cts +123 -0
- package/dist/verifier/index.cjs +4901 -0
- package/dist/verifier/index.cjs.map +1 -0
- package/dist/verifier/index.d.cts +176 -0
- package/dist/verifier/index.d.ts +176 -0
- package/dist/verifier/index.js +4848 -0
- package/dist/verifier/index.js.map +1 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cardanowall/sdk-ts",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "CardanoWall TypeScript SDK — standalone CIP-309 verifier + envelope helpers + HTTP client (browser-safe).",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": "Cardanowall <hello@cardanowall.com>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/cardanowall/cip309-ts.git",
|
|
11
|
+
"directory": "packages/sdk-ts"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/cardanowall/cip309-ts#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/cardanowall/cip309-ts/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"cardano",
|
|
19
|
+
"cip-309",
|
|
20
|
+
"proof-of-existence",
|
|
21
|
+
"poe",
|
|
22
|
+
"cardanowall",
|
|
23
|
+
"sdk"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public",
|
|
27
|
+
"registry": "https://registry.npmjs.org/"
|
|
28
|
+
},
|
|
29
|
+
"bin": {
|
|
30
|
+
"cardanowall-sdk-conformance": "dist/conformance/cli.js"
|
|
31
|
+
},
|
|
32
|
+
"main": "./dist/index.cjs",
|
|
33
|
+
"module": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"development": "./src/index.ts",
|
|
39
|
+
"import": "./dist/index.js",
|
|
40
|
+
"require": "./dist/index.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./fetch": {
|
|
43
|
+
"types": "./dist/fetch/index.d.ts",
|
|
44
|
+
"development": "./src/fetch/index.ts",
|
|
45
|
+
"import": "./dist/fetch/index.js",
|
|
46
|
+
"require": "./dist/fetch/index.cjs"
|
|
47
|
+
},
|
|
48
|
+
"./verifier": {
|
|
49
|
+
"types": "./dist/verifier/index.d.ts",
|
|
50
|
+
"development": "./src/verifier/index.ts",
|
|
51
|
+
"import": "./dist/verifier/index.js",
|
|
52
|
+
"require": "./dist/verifier/index.cjs"
|
|
53
|
+
},
|
|
54
|
+
"./client": {
|
|
55
|
+
"types": "./dist/client/index.d.ts",
|
|
56
|
+
"development": "./src/client/index.ts",
|
|
57
|
+
"import": "./dist/client/index.js",
|
|
58
|
+
"require": "./dist/client/index.cjs"
|
|
59
|
+
},
|
|
60
|
+
"./ids": {
|
|
61
|
+
"types": "./dist/ids/index.d.ts",
|
|
62
|
+
"development": "./src/ids/index.ts",
|
|
63
|
+
"import": "./dist/ids/index.js",
|
|
64
|
+
"require": "./dist/ids/index.cjs"
|
|
65
|
+
},
|
|
66
|
+
"./merkle": {
|
|
67
|
+
"types": "./dist/merkle/index.d.ts",
|
|
68
|
+
"development": "./src/merkle/index.ts",
|
|
69
|
+
"import": "./dist/merkle/index.js",
|
|
70
|
+
"require": "./dist/merkle/index.cjs"
|
|
71
|
+
},
|
|
72
|
+
"./hash": {
|
|
73
|
+
"types": "./dist/hash/index.d.ts",
|
|
74
|
+
"development": "./src/hash/index.ts",
|
|
75
|
+
"import": "./dist/hash/index.js",
|
|
76
|
+
"require": "./dist/hash/index.cjs"
|
|
77
|
+
},
|
|
78
|
+
"./identity": {
|
|
79
|
+
"types": "./dist/identity/index.d.ts",
|
|
80
|
+
"development": "./src/identity/index.ts",
|
|
81
|
+
"import": "./dist/identity/index.js",
|
|
82
|
+
"require": "./dist/identity/index.cjs"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"files": [
|
|
86
|
+
"dist",
|
|
87
|
+
"README.md",
|
|
88
|
+
"LICENSE"
|
|
89
|
+
],
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@noble/ciphers": "^2.2.0",
|
|
92
|
+
"@noble/curves": "^2.2.0",
|
|
93
|
+
"@noble/ed25519": "^3.1.0",
|
|
94
|
+
"@noble/hashes": "^2.2.0",
|
|
95
|
+
"cbor2": "^2.3.0",
|
|
96
|
+
"hash-wasm": "4.12.0",
|
|
97
|
+
"zod": "^4.4.3",
|
|
98
|
+
"@cardanowall/crypto-core": "0.0.0",
|
|
99
|
+
"@cardanowall/poe-standard": "0.0.0"
|
|
100
|
+
},
|
|
101
|
+
"devDependencies": {
|
|
102
|
+
"tsup": "^8.5.1"
|
|
103
|
+
},
|
|
104
|
+
"scripts": {
|
|
105
|
+
"build": "tsup",
|
|
106
|
+
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
107
|
+
}
|
|
108
|
+
}
|