{
  "name": "@rarimo/rarime-connector",
  "version": "2.1.1",
  "description": "Facilitates interaction between a DApp and RariMe MetaMask snap",
  "repository": {
    "type": "git",
    "url": "https://github.com/rarimo/rarime.git"
  },
  "license": "(MIT-0 OR Apache-2.0)",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.js",
      "node": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "unpkg": "./dist/index.js",
  "module": "./dist/esm/index.js",
  "browser": "./dist/esm/index.js",
  "types": "index.d.ts",
  "typesVersions": {
    ">=4.2": {
      "*": [
        "./dist/types/*"
      ]
    }
  },
  "files": [
    "dist/**/*",
    "README.md",
    "package.json"
  ],
  "scripts": {
    "build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && node ./postbuild.js",
    "build:cjs": "npx swc src -d ./dist/cjs --config-file ./.swcrc -C module.type=commonjs --copy-files",
    "build:esm": "npx swc src -d ./dist/esm --config-file ./.swcrc -C module.type=es6 isModule=true --copy-files",
    "build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
    "clean": "rm -rf dist",
    "lint": "yarn run lint:style && yarn run lint:types",
    "lint:style": "eslint --color 'src/**/*.{js,ts,tsx}'",
    "lint:style:fix": "yarn run lint:style --fix",
    "lint:types": "tsc --noEmit --pretty"
  },
  "dependencies": {
    "@ethersproject/providers": "5.7.2",
    "compare-versions": "^6.1.0",
    "ethers": "5.7.2"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.62",
    "@swc/core": "1.3.53",
    "@swc/jest": "^0.2.26",
    "tsc-alias": "^1.8.8"
  },
  "publishConfig": {
    "access": "public"
  },
  "node": "./dist/cjs/index.js",
  "typedocOptions": {
    "entryPoints": [
      "src/index.ts"
    ]
  }
}