UNPKG

@daevm/cheqd-sdk

Version:

A TypeScript SDK built with CosmJS to interact with cheqd network ledger

90 lines (89 loc) 2.58 kB
{ "name": "@daevm/cheqd-sdk", "version": "3.0.4", "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/cjs/index.js", "types": "build/types/index.d.ts", "exports": { ".": { "types": "./build/types/index.d.ts", "require": "./build/cjs/index.js", "default": "./build/cjs/index.js" }, "./*": { "types": "./build/types/*.d.ts", "require": "./build/cjs/*.js", "default": "./build/cjs/*.js" } }, "scripts": { "test": "jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1", "test:watch": "jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1 --watch", "build": "rm -rf build && npm run build:types && npm run build:cjs", "build:types": "tsc -p tsconfig.types.json", "build:cjs": "tsc -p tsconfig.cjs.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": "^2.0.1", "@cosmjs/amino": "^0.29.5", "@cosmjs/encoding": "^0.29.5", "@cosmjs/math": "^0.29.5", "@cosmjs/proto-signing": "^0.29.5", "@cosmjs/stargate": "^0.29.5", "@cosmjs/tendermint-rpc": "^0.29.5", "@cosmjs/utils": "^0.29.5", "@cosmjs/crypto": "^0.29.5", "@stablelib/ed25519": "^1.0.3", "cosmjs-types": "^0.5.2", "did-jwt": "^6.11.2", "did-resolver": "^4.1.0", "multiformats": "^9.9.0", "uuid": "^9.0.0" }, "devDependencies": { "@semantic-release/changelog": "^6.0.2", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^8.0.7", "@semantic-release/npm": "^9.0.2", "@semantic-release/release-notes-generator": "^10.0.3", "@types/jest": "^29.4.0", "@types/node": "^18.14.6", "@types/uuid": "^9.0.1", "conventional-changelog-conventionalcommits": "^5.0.0", "jest": "^29.5.0", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "typescript": "^4.9.5", "uint8arrays": "^3.1.1" }, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "engines": { "node": ">=16.0.0" } }