lethean-utils-js/package.json
Claude 0bb6edf8f1
Some checks failed
Publish lethean-utils-js / build-and-publish (push) Failing after 57s
rebrand(lethean): update branding, ports, and config for Lethean blockchain
- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN
- Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC)
- Wallet: 11212 → 36944/46944
- Address prefix: iTHN
- URLs: zano.org → lethean.io
- Explorer links: explorer.lthn.io

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:24:07 +01:00

77 lines
2.1 KiB
JSON

{
"name": "@aspect-build/lethean-utils-js",
"version": "0.1.0",
"description": "Cryptographic utilities for the Lethean blockchain (address encoding, transaction decoding, mnemonic seeds)",
"repository": "https://forge.lthn.ai/lthn/lethean-utils-js",
"author": "Lethean Team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"build": "tsc -p ./tsconfig.build.json",
"preversion": "yarn test",
"version": "yarn build && git add -A dist",
"postversion": "git push && git push --tags",
"lint": "eslint \"{src,apps,libs,test,lib}/**/*.ts\" --fix"
},
"dependencies": {
"bn.js": "^5.2.1",
"elliptic": "^6.5.4",
"js-sha3": "^0.9.3",
"keccak": "^3.0.3",
"axios": "^0.21.1",
"big.js": "^6.1.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/big.js": "^6",
"@types/elliptic": "^6.4.18",
"@types/keccak": "^3.0.5",
"@types/node": "^18",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-newlines": "^1.1.7",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s",
"!dist/**",
"!coverage/**"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"packageManager": "yarn@1.22.22"
}