mochimo-wallet
Version:
Mochimo HD Wallet Implementation with React Integration
80 lines (79 loc) • 1.98 kB
JSON
{
"name": "mochimo-wallet",
"version": "1.1.43",
"description": "Mochimo HD Wallet Implementation with React Integration",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepack": "npm run test && npm run build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"@scure/bip39": "^1.2.2",
"crypto-js": "^4.2.0",
"mochimo-mesh-api-client": "^1.1.0",
"mochimo-wots": "^1.2.7",
"node-forge": "^1.3.1",
"pako": "^2.1.0",
"react-redux": "^9.2.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.1.0",
"@types/crypto-js": "^4.2.1",
"@types/node-forge": "^1.3.11",
"@types/pako": "^2.0.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vitest": "^1.0.0",
"vitest-localstorage-mock": "^0.1.2"
},
"keywords": [
"mochimo",
"wallet",
"cryptocurrency",
"blockchain",
"react"
],
"author": "Mochimoto",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mochimo/wallet.git"
},
"workspaces": [
"examples/*"
]
}