libnexa-ts
Version:
A pure and powerful Nexa SDK library.
73 lines (72 loc) • 1.69 kB
JSON
{
"name": "libnexa-ts",
"version": "3.0.3",
"description": "A pure and powerful Nexa SDK library.",
"type": "module",
"types": "dist/types/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=22"
},
"files": [
"src",
"dist"
],
"scripts": {
"check": "tsc --noEmit && npm run madge",
"build": "del-cli ./dist && vite build",
"lint": "eslint .",
"madge": "madge --circular src/index.ts",
"test": "vitest run --dir tests",
"coverage": "del-cli ./coverage && npm test -- --coverage --reporter=verbose --reporter=junit",
"docs": "typedoc"
},
"keywords": [
"nexa",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/nexa/libnexa-ts"
},
"author": "vgrunner",
"license": "MIT",
"dependencies": {
"@noble/hashes": "^2.0.1",
"base64-js": "^1.5.1",
"bn.js": "^5.2.3",
"bs58": "^6.0.0",
"elliptic": "^6.6.1",
"js-big-decimal": "^2.2.0"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/elliptic": "^6.4.18",
"@vitest/coverage-v8": "^3.2.4",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"madge": "^8.0.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.0.6"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}