@credo-ts/cheqd 0.4.1-alpha.157
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 +31 -0
- package/build/CheqdModule.d.ts +9 -0
- package/build/CheqdModule.js +31 -0
- package/build/CheqdModule.js.map +1 -0
- package/build/CheqdModuleConfig.d.ts +17 -0
- package/build/CheqdModuleConfig.js +14 -0
- package/build/CheqdModuleConfig.js.map +1 -0
- package/build/anoncreds/index.d.ts +1 -0
- package/build/anoncreds/index.js +6 -0
- package/build/anoncreds/index.js.map +1 -0
- package/build/anoncreds/services/CheqdAnonCredsRegistry.d.ts +19 -0
- package/build/anoncreds/services/CheqdAnonCredsRegistry.js +264 -0
- package/build/anoncreds/services/CheqdAnonCredsRegistry.js.map +1 -0
- package/build/anoncreds/utils/identifiers.d.ts +12 -0
- package/build/anoncreds/utils/identifiers.js +53 -0
- package/build/anoncreds/utils/identifiers.js.map +1 -0
- package/build/anoncreds/utils/transform.d.ts +43 -0
- package/build/anoncreds/utils/transform.js +170 -0
- package/build/anoncreds/utils/transform.js.map +1 -0
- package/build/dids/CheqdDidRegistrar.d.ts +72 -0
- package/build/dids/CheqdDidRegistrar.js +320 -0
- package/build/dids/CheqdDidRegistrar.js.map +1 -0
- package/build/dids/CheqdDidResolver.d.ts +24 -0
- package/build/dids/CheqdDidResolver.js +170 -0
- package/build/dids/CheqdDidResolver.js.map +1 -0
- package/build/dids/didCheqdUtil.d.ts +28 -0
- package/build/dids/didCheqdUtil.js +129 -0
- package/build/dids/didCheqdUtil.js.map +1 -0
- package/build/dids/index.d.ts +2 -0
- package/build/dids/index.js +8 -0
- package/build/dids/index.js.map +1 -0
- package/build/index.d.ts +5 -0
- package/build/index.js +17 -0
- package/build/index.js.map +1 -0
- package/build/ledger/CheqdLedgerService.d.ts +33 -0
- package/build/ledger/CheqdLedgerService.js +92 -0
- package/build/ledger/CheqdLedgerService.js.map +1 -0
- package/build/ledger/index.d.ts +1 -0
- package/build/ledger/index.js +6 -0
- package/build/ledger/index.js.map +1 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@credo-ts/cheqd",
|
|
3
|
+
"main": "build/index",
|
|
4
|
+
"types": "build/index",
|
|
5
|
+
"version": "0.4.1-alpha.157+b83c5173",
|
|
6
|
+
"files": [
|
|
7
|
+
"build"
|
|
8
|
+
],
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/openwallet-foundation/credo-ts/tree/main/packages/cheqd",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/openwallet-foundation/credo-ts",
|
|
17
|
+
"directory": "packages/cheqd"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "yarn run clean && yarn run compile",
|
|
21
|
+
"clean": "rimraf ./build",
|
|
22
|
+
"compile": "tsc -p tsconfig.build.json",
|
|
23
|
+
"prepublishOnly": "yarn run build",
|
|
24
|
+
"test": "jest"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@cheqd/sdk": "cjs",
|
|
28
|
+
"@cheqd/ts-proto": "cjs",
|
|
29
|
+
"@cosmjs/crypto": "^0.29.5",
|
|
30
|
+
"@cosmjs/proto-signing": "^0.31.0",
|
|
31
|
+
"@credo-ts/anoncreds": "0.4.1-alpha.157+b83c5173",
|
|
32
|
+
"@credo-ts/core": "0.4.1-alpha.157+b83c5173",
|
|
33
|
+
"@stablelib/ed25519": "^1.0.3",
|
|
34
|
+
"class-transformer": "^0.5.1",
|
|
35
|
+
"class-validator": "0.14.1",
|
|
36
|
+
"rxjs": "^7.8.0",
|
|
37
|
+
"tsyringe": "^4.8.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"rimraf": "^4.0.7",
|
|
41
|
+
"typescript": "~4.9.4"
|
|
42
|
+
},
|
|
43
|
+
"gitHead": "b83c5173070594448d92f801331b3a31c7ac8049"
|
|
44
|
+
}
|