@iheartsolana/jelli-core
Version:
Multi-chain wallet management made simple - core cryptographic utilities for Jelli applications
89 lines (88 loc) • 2.55 kB
JSON
{
"name": "@iheartsolana/jelli-core",
"version": "0.7.39",
"description": "Multi-chain wallet management made simple - core cryptographic utilities for Jelli applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:interactive": "npm run build && node examples/wallet-management/test-interactive.js",
"demo:encryption": "npx ts-node examples/encryption/seed-encryption-demo.ts",
"demo:integrated": "npx ts-node examples/encryption/seed-encryption-demo-integrated.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"docs": "typedoc",
"docs:serve": "typedoc --watch --out docs & npx http-server docs -p 8080 -o",
"clean": "rm -rf dist docs",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"crypto",
"wallet",
"multi-wallet",
"blockchain",
"bip39",
"bip44",
"hd-wallet",
"phantom",
"shamir-secret-sharing",
"distributed-key-management",
"chacha20-poly1305",
"seed-based-wallets",
"solana",
"ethereum",
"bitcoin",
"base"
],
"author": "Jelli Team",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@types/hdkey": "^2.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^30.0.5",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.9",
"typescript": "^5.0.0"
},
"dependencies": {
"@iheartsolana/jelli-core": "^0.7.38",
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^3.0.0",
"@scure/bip39": "^1.2.0",
"@types/uuid": "^10.0.0",
"bs58": "^5.0.0",
"ethereum-cryptography": "^3.2.0",
"hdkey": "^2.1.0",
"js-sha3": "^0.9.3",
"micro-key-producer": "^0.8.1",
"secp256k1": "^5.0.1",
"shamir-secret-sharing": "^0.0.4",
"tweetnacl": "^1.0.3",
"uuid": "^11.1.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/iheartsolana/jelli-core.git"
},
"bugs": {
"url": "https://github.com/iheartsolana/jelli-core/issues"
},
"homepage": "https://github.com/iheartsolana/jelli-core#readme"
}