web3/package.json
Claude 5e38ba0bc8
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:13 +01:00

85 lines
2.1 KiB
JSON

{
"name": "lethean_web3",
"version": "9.2.2",
"description": "",
"type": "module",
"main": "./web/dist/index.js",
"module": "./web/dist/index.js",
"browser": "./web/dist/index.js",
"node": "./server/dist/index.js",
"types": "./web/dist/index.d.ts",
"sideEffects": false,
"typesVersions": {
">=4.2": {
"protobufs/*": [
"./dist/types/protobufs/*"
]
}
},
"scripts": {
"build:web": "tsc --project tsconfig.web.json",
"build:server": "tsc --project tsconfig.server.json",
"build:shared": "tsc --project tsconfig.shared.json",
"build": "npm run build:web && npm run build:server && npm run build:shared"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyle-team/lethean_web3.git"
},
"keywords": [
"lethean",
"web3",
"crypto",
"blockchain",
"wallet"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/big.js": "^6.2.2",
"@types/node": "^20.14.12",
"@types/node-forge": "^1.3.11",
"@types/react": "^18.3.3",
"@types/uuid": "^10.0.0",
"axios": "^1.7.2",
"big.js": "^6.2.1",
"decimal.js": "^10.4.3",
"node-forge": "^1.3.1",
"react": "^18.3.1",
"typescript": "^5.5.4",
"uuid": "^10.0.0"
},
"bugs": {
"url": "https://github.com/hyle-team/lethean_web3/issues"
},
"exports": {
".": {
"import": "./web/dist/index.js",
"require": "./web/dist/index.js",
"types": "./web/dist/index.d.ts"
},
"./web": {
"import": "./web/dist/index.js",
"require": "./web/dist/index.js",
"types": "./web/dist/index.d.ts"
},
"./server": {
"import": "./server/dist/index.js",
"require": "./server/dist/index.js",
"types": "./server/dist/index.d.ts"
},
"./shared": {
"import": "./shared/dist/index.js",
"require": "./shared/dist/index.js",
"types": "./shared/dist/index.d.ts"
}
},
"files": [
"web",
"server",
"shared",
"package.json",
"README.md"
],
"homepage": "https://github.com/hyle-team/lethean_web3#readme"
}