@meshsdk/common
Version:
Contains constants, types and interfaces used across the SDK and different serialization libraries
55 lines • 1.45 kB
JSON
{
"name": "@meshsdk/common",
"version": "1.9.0-beta.78",
"description": "Contains constants, types and interfaces used across the SDK and different serialization libraries",
"main": "./dist/index.cjs",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"build:docs": "typedoc src/index.ts --json ../../apps/docs/src/data/mesh-common.json",
"build:mesh": "tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"pack": "npm pack --pack-destination=./dist",
"test": "jest"
},
"dependencies": {
"bech32": "^2.0.0",
"bip39": "3.1.0",
"blake2b": "^2.1.4",
"blakejs": "^1.2.1"
},
"devDependencies": {
"@meshsdk/configs": "*",
"@types/blake2b": "^2.1.3",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"prettier": "@meshsdk/configs/prettier",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"cardano",
"ada",
"web3",
"blockchain",
"sdk"
]
}