{
  "name": "0xsequence",
  "version": "2.3.43",
  "description": "Sequence: a modular web3 stack and smart wallet for Ethereum chains",
  "repository": "https://github.com/0xsequence/sequence.js",
  "source": "src/index.ts",
  "main": "dist/0xsequence.cjs.js",
  "module": "dist/0xsequence.esm.js",
  "umd:main": "dist/0xsequence.umd.min.js",
  "license": "Apache-2.0",
  "peerDependencies": {
    "ethers": ">=6"
  },
  "dependencies": {
    "@0xsequence/account": "2.3.43",
    "@0xsequence/abi": "2.3.43",
    "@0xsequence/api": "2.3.43",
    "@0xsequence/core": "2.3.43",
    "@0xsequence/auth": "2.3.43",
    "@0xsequence/guard": "2.3.43",
    "@0xsequence/metadata": "2.3.43",
    "@0xsequence/migration": "2.3.43",
    "@0xsequence/indexer": "2.3.43",
    "@0xsequence/signhub": "2.3.43",
    "@0xsequence/network": "2.3.43",
    "@0xsequence/relayer": "2.3.43",
    "@0xsequence/sessions": "2.3.43",
    "@0xsequence/utils": "2.3.43",
    "@0xsequence/provider": "2.3.43",
    "@0xsequence/wallet": "2.3.43"
  },
  "devDependencies": {
    "@0xsequence/wallet-contracts": "^3.0.1",
    "@babel/plugin-transform-runtime": "^7.19.6",
    "babel-loader": "^9.1.0",
    "ethers": "6.13.4",
    "ganache": "^7.5.0",
    "hardhat": "^2.22.14",
    "html-webpack-plugin": "^5.3.1",
    "webpack": "^5.65.0",
    "webpack-cli": "^4.6.0",
    "webpack-dev-server": "^3.11.2",
    "@0xsequence/tests": "2.3.43"
  },
  "keywords": [],
  "preconstruct": {
    "umdName": "sequence"
  },
  "files": [
    "src",
    "dist"
  ],
  "ava": {
    "require": [],
    "files": [
      "tests/**/*.spec.ts"
    ],
    "extensions": [
      "ts"
    ],
    "verbose": true
  },
  "config": {
    "mnemonic": "ripple axis someone ridge uniform wrist prosper there frog rate olympic knee",
    "ganacheChainID": 31337,
    "ganachePort": 8545,
    "ganacheGasLimit": "0xfffffffffff",
    "ganacheGasPrice": "0x200",
    "etherBalance": "100000",
    "extra": ""
  },
  "scripts": {
    "test": "pnpm test:concurrently 'pnpm test:run'",
    "test:run": "NODE_OPTIONS='--import tsx' ava --serial --fail-fast --timeout 5m",
    "test:only": "pnpm test:run --match",
    "test:watch": "pnpm test:run --watch",
    "test:server": "webpack serve --config tests/webpack.config.js",
    "test:server2": "PORT=8888 webpack serve --config tests/webpack.config.js",
    "test:concurrently": "concurrently -k --success first 'pnpm test:server' 'pnpm start:hardhat' 'pnpm start:hardhat2'",
    "start:hardhat": "hardhat node --hostname 0.0.0.0",
    "start:hardhat:verbose": "hardhat --verbose node --hostname 0.0.0.0",
    "start:hardhat2": "hardhat --config hardhat2.config.js node --hostname 0.0.0.0 --port 9545",
    "start:hardhat2:verbose": "hardhat --config hardhat2.config.js --verbose node --hostname 0.0.0.0 --port 9545",
    "start:ganache": "ganache --chain.chainId ${npm_package_config_ganacheChainID} --chain.networkId ${npm_package_config_ganacheChainID} --server.port ${npm_package_config_ganachePort} --miner.blockGasLimit ${npm_package_config_ganacheGasLimit} --miner.defaultGasPrice ${npm_package_config_ganacheGasPrice} --wallet.defaultBalance ${npm_package_config_etherBalance} --wallet.mnemonic \"${npm_package_config_mnemonic}\" ${npm_package_config_extra}",
    "start:ganache:verbose": "pnpm start:ganache --verbose",
    "start:ganache2": "ganache --chain.chainId 31338 --chain.networkId 31338 --server.port 9545 --miner.blockGasLimit ${npm_package_config_ganacheGasLimit} --miner.defaultGasPrice ${npm_package_config_ganacheGasPrice} --wallet.defaultBalance ${npm_package_config_etherBalance} --wallet.mnemonic \"${npm_package_config_mnemonic}\" ${npm_package_config_extra}",
    "start:ganache2:verbose": "pnpm start:ganache2 --verbose",
    "stop:ganache": "ps aux | grep ganache | grep -v grep | awk '{print $2}' | xargs kill -9",
    "typecheck": "tsc --noEmit"
  }
}