UNPKG

@vechain/sdk-errors

Version:

This module is dedicated to managing and customizing errors within the VeChain SDK

39 lines 1.82 kB
{ "name": "@vechain/sdk-errors", "version": "2.0.2", "description": "This module is dedicated to managing and customizing errors within the VeChain SDK", "author": "VeChain Foundation", "license": "MIT", "homepage": "https://github.com/vechain/vechain-sdk-js", "repository": { "type": "git", "url": "github:vechain/vechain-sdk-js" }, "keywords": [ "VeChain", "error" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "src", "package.json", "README.md", "LICENSE" ], "scripts": { "build": "rm -rf ./dist && tsup-node src/index.ts --format cjs,esm --dts", "lint": "eslint", "format": "prettier --write src/**/*.ts tests/**/*.ts", "start-thor-solo": "echo 'Starting thor solo node ...' && docker compose -f ../../docker-compose.thor.yml up -d --wait && echo '\nThor solo node started ...'", "stop-thor-solo": "echo 'Stopping thor solo node ...' && docker compose -f ../../docker-compose.thor.yml down && echo 'Thor solo node stopped ...'", "test:unit": "rm -rf ./coverageUnit && jest --coverage --coverageDirectory=coverageUnit --group=unit", "test:integration": "rm -rf ./coverageIntegration && jest --coverage --coverageDirectory=coverageIntegration --group=integration", "test:integration:solo": "(yarn start-thor-solo && yarn test:integration && yarn stop-thor-solo) || yarn stop-thor-solo", "test:browser": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit --config ./jest.config.browser.js", "test:solo": "(yarn start-thor-solo && yarn test && yarn stop-thor-solo) || yarn stop-thor-solo", "test": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit" } }