generated from cheqd/.github
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3.12 KB
/
package.json
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
101
{
"name": "@cheqd/sdk",
"version": "5.0.1",
"description": "A TypeScript SDK built with CosmJS to interact with cheqd network ledger",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"source": "src/index.ts",
"main": "build/esm/index.js",
"types": "build/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./build/types/index.d.ts",
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/esm/index.js"
},
"./*": {
"types": "./build/types/*.d.ts",
"import": "./build/esm/*.js",
"require": "./build/cjs/*.js",
"default": "./build/esm/*.js"
}
},
"scripts": {
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1",
"test:cjs": "echo 'Experimental backwards compatibility! Use v2 major version for deep CommonJS exports.' && jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1",
"test:watch": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1 --watch",
"build": "rm -rf build && npm run build:types && npm run build:esm && npm run build:cjs",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "echo 'Experimental backwards compatibility! Use v2 major version or `@cjs` npm tag for deep CommonJS exports.' && tsc -p tsconfig.cjs.json",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'"
},
"repository": "https://github.com/cheqd/sdk.git",
"keywords": [
"cheqd",
"sdk",
"ssi",
"did",
"vc",
"resources"
],
"bugs": {
"url": "https://github.com/cheqd/sdk/issues"
},
"homepage": "https://github.com/cheqd/sdk#readme",
"files": [
"build",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@cheqd/ts-proto": "^4.0.0",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"@stablelib/ed25519": "^1.0.3",
"@types/secp256k1": "^4.0.6",
"cosmjs-types": "^0.9.0",
"did-jwt": "^8.0.4",
"did-resolver": "^4.1.0",
"file-type": "^19.5.0",
"multiformats": "^13.3.0",
"secp256k1": "^5.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/uuid": "^10.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"uint8arrays": "^5.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}