{
  "name": "@nekoproject/wallets",
  "version": "1.2.12",
  "author": "@minhdocs",
  "description": "Cross-chain Wallet",
  "main": "lib/index.commonjs.js",
  "module": "lib/index.esm.js",
  "browser": "lib/index.iife.js",
  "types": "lib/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "browserslist": [
    "defaults",
    "not IE 11",
    "maintained node versions"
  ],
  "engines": {
    "node": ">=12.20.0"
  },
  "scripts": {
    "test": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register './tests/**/*.test.ts'",
    "test:cover": "NODE_ENV='production' TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc --reporter=lcov mocha -r ts-node/register './tests/**/*.test.ts'",
    "test:live": "TEST_LIVE=1 npm run test",
    "build": "npm run build:rollup && npm run typegen",
    "build:rollup": "rollup -c rollup.config.js",
    "typegen": "bash ./scripts/typegen.sh",
    "publish:wallet": "npm publish --access public",
    "dev:test": "ts-node --project tsconfig.cjs.json src/index.ts",
    "cplib": "cp -r ./lib ./tests",
    "clean": "rm -rf lib && rm -rf declarations && rm -rf tests/lib && rm -rf .nyc_output && rm -rf ./coverage",
    "reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm install"
  },
  "keywords": [
    "core-wallet",
    "crypto-wallet",
    "cross-chain-wallet"
  ],
  "dependencies": {
    "@babel/plugin-proposal-class-properties": "^7.16.7",
    "@babel/plugin-proposal-private-methods": "^7.16.11",
    "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
    "@babel/plugin-transform-runtime": "^7.16.10",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-typescript": "^7.16.7",
    "@babel/register": "^7.17.0",
    "@nekoproject/wallets": "^1.1.2",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^21.0.1",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^13.1.3",
    "@rollup/plugin-replace": "^3.0.1",
    "@solana/web3.js": "^1.36.0",
    "bip32": "^3.0.1",
    "bip39": "^3.0.4",
    "bs58": "^5.0.0",
    "dotenv": "^16.0.1",
    "ed25519-hd-key": "^1.2.0",
    "esm": "^3.2.25",
    "ethers": "^5.6.0",
    "nyc": "^15.1.0",
    "rollup-plugin-dts": "^4.1.0",
    "rollup-plugin-node-polyfills": "^0.2.1",
    "rollup-plugin-terser": "^7.0.2",
    "tiny-secp256k1": "^2.2.0",
    "tweetnacl": "^1.0.3"
  },
  "license": "MIT",
  "directories": {
    "lib": "lib",
    "test": "tests"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/mocha": "^9.1.0",
    "chai": "^4.3.6",
    "mocha": "^9.2.0",
    "ts-node": "^10.5.0"
  }
}
