@cheqd/sdk 3.7.5-develop.3 → 3.7.5-develop.4
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/package.json +99 -99
package/package.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
2
|
+
"name": "@cheqd/sdk",
|
|
3
|
+
"version": "3.7.5-develop.4",
|
|
4
|
+
"description": "A TypeScript SDK built with CosmJS to interact with cheqd network ledger",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
|
|
7
|
+
"source": "src/index.ts",
|
|
8
|
+
"main": "build/esm/index.js",
|
|
9
|
+
"types": "build/types/index.d.ts",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./build/types/index.d.ts",
|
|
14
|
+
"import": "./build/esm/index.js",
|
|
15
|
+
"require": "./build/cjs/index.js",
|
|
16
|
+
"default": "./build/esm/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./*": {
|
|
19
|
+
"types": "./build/types/*.d.ts",
|
|
20
|
+
"import": "./build/esm/*.js",
|
|
21
|
+
"require": "./build/cjs/*.js",
|
|
22
|
+
"default": "./build/esm/*.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1",
|
|
27
|
+
"test:cjs": "echo 'Experimental backwards compatibility! Use v2 major version for deep CommonJS exports.' && jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1",
|
|
28
|
+
"test:watch": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1 --watch",
|
|
29
|
+
"build": "rm -rf build && npm run build:types && npm run build:esm && npm run build:cjs",
|
|
30
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
31
|
+
"build:esm": "tsc -p tsconfig.esm.json",
|
|
32
|
+
"build:cjs": "echo 'Experimental backwards compatibility! Use v2 major version or `@cjs` npm tag for deep CommonJS exports.' && tsc -p tsconfig.cjs.json",
|
|
33
|
+
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'"
|
|
34
|
+
},
|
|
35
|
+
"repository": "https://github.com/cheqd/sdk.git",
|
|
36
|
+
"keywords": [
|
|
37
|
+
"cheqd",
|
|
38
|
+
"sdk",
|
|
39
|
+
"ssi",
|
|
40
|
+
"did",
|
|
41
|
+
"vc",
|
|
42
|
+
"resources"
|
|
43
|
+
],
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/cheqd/sdk/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/cheqd/sdk#readme",
|
|
48
|
+
"files": [
|
|
49
|
+
"build/**/*",
|
|
50
|
+
"LICENSE",
|
|
51
|
+
"package.json",
|
|
52
|
+
"README.md"
|
|
53
|
+
],
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@cheqd/ts-proto": "^3.3.7",
|
|
56
|
+
"@cosmjs/amino": "^0.31.3",
|
|
57
|
+
"@cosmjs/crypto": "^0.32.0",
|
|
58
|
+
"@cosmjs/encoding": "^0.31.3",
|
|
59
|
+
"@cosmjs/math": "^0.32.0",
|
|
60
|
+
"@cosmjs/proto-signing": "^0.31.3",
|
|
61
|
+
"@cosmjs/stargate": "^0.31.3",
|
|
62
|
+
"@cosmjs/tendermint-rpc": "^0.31.3",
|
|
63
|
+
"@cosmjs/utils": "^0.31.3",
|
|
64
|
+
"@stablelib/ed25519": "^1.0.3",
|
|
65
|
+
"@types/secp256k1": "^4.0.6",
|
|
66
|
+
"cosmjs-types": "^0.9.0",
|
|
67
|
+
"did-jwt": "^7.4.5",
|
|
68
|
+
"did-resolver": "^4.1.0",
|
|
69
|
+
"file-type": "^18.7.0",
|
|
70
|
+
"multiformats": "^12.1.3",
|
|
71
|
+
"secp256k1": "^5.0.0",
|
|
72
|
+
"uuid": "^9.0.1"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
76
|
+
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
77
|
+
"@semantic-release/git": "^10.0.1",
|
|
78
|
+
"@semantic-release/github": "^9.2.3",
|
|
79
|
+
"@semantic-release/npm": "^11.0.1",
|
|
80
|
+
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
81
|
+
"@types/jest": "^29.5.10",
|
|
82
|
+
"@types/node": "^20.10.0",
|
|
83
|
+
"@types/uuid": "^9.0.7",
|
|
84
|
+
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
85
|
+
"cross-env": "^7.0.3",
|
|
86
|
+
"jest": "^29.7.0",
|
|
87
|
+
"prettier": "^3.1.0",
|
|
88
|
+
"semantic-release": "^22.0.8",
|
|
89
|
+
"ts-jest": "^29.1.1",
|
|
90
|
+
"ts-node": "^10.9.1",
|
|
91
|
+
"typescript": "^5.3.2",
|
|
92
|
+
"uint8arrays": "^5.0.1"
|
|
93
|
+
},
|
|
94
|
+
"publishConfig": {
|
|
95
|
+
"registry": "https://registry.npmjs.org/",
|
|
96
|
+
"access": "public"
|
|
97
|
+
},
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": ">=18.0.0"
|
|
100
|
+
}
|
|
101
101
|
}
|