forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@credo-ts/cheqd",
"exports": {
"cli": "./build/index.mjs",
"import": "./src/index.ts"
},
"version": "0.6.2",
"files": [
"build"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"types": "./build/index.d.mts",
"module": "./build/index.mjs",
"exports": {
".": "./build/index.mjs",
"./package.json": "./package.json"
}
},
"homepage": "https://github.com/openwallet-foundation/credo-ts/tree/main/packages/cheqd",
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation/credo-ts",
"directory": "packages/cheqd"
},
"scripts": {
"build": "tsdown --config-loader unconfig",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@cheqd/sdk": "npm:@cheqd/sdk-esm@~5.3.7",
"@cheqd/ts-proto": "^4.2.0",
"@cosmjs/crypto": "^0.36.2",
"@cosmjs/proto-signing": "^0.36.2",
"@cosmjs/stargate": "^0.36.2",
"@credo-ts/anoncreds": "workspace:*",
"@credo-ts/core": "workspace:*",
"@stablelib/ed25519": "catalog:",
"class-transformer": "catalog:",
"class-validator": "catalog:",
"rxjs": "catalog:",
"tsyringe": "catalog:"
},
"devDependencies": {
"typescript": "catalog:"
}
}