Skip to content

Commit

Permalink
chore(release): 5.1.0-develop.2 [skip ci]
Browse files Browse the repository at this point in the history
## [5.1.0-develop.2](5.1.0-develop.1...5.1.0-develop.2) (2025-02-04)

### Bug Fixes

* Added pre-install hook ([623ee5b](623ee5b))
  • Loading branch information
semantic-release-bot committed Feb 4, 2025
1 parent 623ee5b commit 29b08e2
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 116 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [5.1.0-develop.2](https://github.com/cheqd/sdk/compare/5.1.0-develop.1...5.1.0-develop.2) (2025-02-04)


### Bug Fixes

* Added pre-install hook ([623ee5b](https://github.com/cheqd/sdk/commit/623ee5b516cded54b6938842e21e20126754c426))

## [5.1.0-develop.1](https://github.com/cheqd/sdk/compare/5.0.1...5.1.0-develop.1) (2025-02-03)


Expand Down
232 changes: 116 additions & 116 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,118 +1,118 @@
{
"name": "@cheqd/sdk",
"version": "5.1.0-develop.1",
"description": "A TypeScript SDK built with CosmJS to interact with the cheqd network ledger",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"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": {
"clean": "rm -rf node_modules && rm -rf esm/node_modules && rm -rf cjs/node_modules && rm -f package-lock.json",
"build": "rm -rf build && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "cd esm && tsc -p tsconfig.json",
"build:cjs": "cd cjs && tsc -p tsconfig.json",
"build:types": "cd esm && tsc -p tsconfig.types.json",
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "cd esm && npm test",
"test:cjs": "cd cjs && npm test",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'",
"preinstall": "node preinstall.js"
},
"workspaces": [
"esm",
"cjs"
],
"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"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.5.12",
"conventional-changelog-conventionalcommits": "^7.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"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",
"exponential-backoff": "^3.1.1",
"file-type": "^19.5.0",
"multiformats": "^13.3.0",
"secp256k1": "^5.0.0",
"uuid": "^10.0.0",
"@cheqd/ts-proto-cjs": "npm:@cheqd/ts-proto@~2.4.0",
"@cosmjs/amino-cjs": "npm:@cosmjs/amino@~0.30.1",
"@cosmjs/crypto-cjs": "npm:@cosmjs/crypto@~0.30.1",
"@cosmjs/encoding-cjs": "npm:@cosmjs/encoding@~0.30.1",
"@cosmjs/math-cjs": "npm:@cosmjs/math@~0.30.1",
"@cosmjs/proto-signing-cjs": "npm:@cosmjs/proto-signing@~0.30.1",
"@cosmjs/stargate-cjs": "npm:@cosmjs/stargate@~0.30.1",
"@cosmjs/tendermint-rpc-cjs": "npm:@cosmjs/tendermint-rpc@~0.30.1",
"@cosmjs/utils-cjs": "npm:@cosmjs/utils@~0.30.1",
"@stablelib/ed25519-cjs": "npm:@stablelib/ed25519@^1.0.3",
"@types/secp256k1-cjs": "npm:@types/secp256k1@^4.0.6",
"cosmjs-types-cjs": "npm:cosmjs-types@^0.7.2",
"did-jwt-cjs": "npm:did-jwt@^8.0.4",
"did-resolver-cjs": "npm:did-resolver@^4.1.0",
"exponential-backoff-cjs": "npm:exponential-backoff@^3.1.1",
"file-type-cjs": "npm:file-type@^16.5.4",
"long-cjs": "npm:long@^4.0.0",
"multiformats-cjs": "npm:multiformats@^9.9.0",
"secp256k1-cjs": "npm:secp256k1@^5.0.0",
"uuid-cjs": "npm:uuid@^10.0.0"
}
"name": "@cheqd/sdk",
"version": "5.1.0-develop.2",
"description": "A TypeScript SDK built with CosmJS to interact with the cheqd network ledger",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"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": {
"clean": "rm -rf node_modules && rm -rf esm/node_modules && rm -rf cjs/node_modules && rm -f package-lock.json",
"build": "rm -rf build && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "cd esm && tsc -p tsconfig.json",
"build:cjs": "cd cjs && tsc -p tsconfig.json",
"build:types": "cd esm && tsc -p tsconfig.types.json",
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "cd esm && npm test",
"test:cjs": "cd cjs && npm test",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'",
"preinstall": "node preinstall.js"
},
"workspaces": [
"esm",
"cjs"
],
"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"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.5.12",
"conventional-changelog-conventionalcommits": "^7.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"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",
"exponential-backoff": "^3.1.1",
"file-type": "^19.5.0",
"multiformats": "^13.3.0",
"secp256k1": "^5.0.0",
"uuid": "^10.0.0",
"@cheqd/ts-proto-cjs": "npm:@cheqd/ts-proto@~2.4.0",
"@cosmjs/amino-cjs": "npm:@cosmjs/amino@~0.30.1",
"@cosmjs/crypto-cjs": "npm:@cosmjs/crypto@~0.30.1",
"@cosmjs/encoding-cjs": "npm:@cosmjs/encoding@~0.30.1",
"@cosmjs/math-cjs": "npm:@cosmjs/math@~0.30.1",
"@cosmjs/proto-signing-cjs": "npm:@cosmjs/proto-signing@~0.30.1",
"@cosmjs/stargate-cjs": "npm:@cosmjs/stargate@~0.30.1",
"@cosmjs/tendermint-rpc-cjs": "npm:@cosmjs/tendermint-rpc@~0.30.1",
"@cosmjs/utils-cjs": "npm:@cosmjs/utils@~0.30.1",
"@stablelib/ed25519-cjs": "npm:@stablelib/ed25519@^1.0.3",
"@types/secp256k1-cjs": "npm:@types/secp256k1@^4.0.6",
"cosmjs-types-cjs": "npm:cosmjs-types@^0.7.2",
"did-jwt-cjs": "npm:did-jwt@^8.0.4",
"did-resolver-cjs": "npm:did-resolver@^4.1.0",
"exponential-backoff-cjs": "npm:exponential-backoff@^3.1.1",
"file-type-cjs": "npm:file-type@^16.5.4",
"long-cjs": "npm:long@^4.0.0",
"multiformats-cjs": "npm:multiformats@^9.9.0",
"secp256k1-cjs": "npm:secp256k1@^5.0.0",
"uuid-cjs": "npm:uuid@^10.0.0"
}
}

0 comments on commit 29b08e2

Please sign in to comment.