{
  "name": "@rarimo/swap",
  "version": "2.6.0",
  "description": "Internal tools that other Rarimo packages use to swap tokens.",
  "repository": {
    "type": "git",
    "url": "https://github.com/rarimo/js-sdk.git",
    "directory": "packages/swap"
  },
  "keywords": [
    "sdk",
    "rarimo",
    "multi-chain",
    "bridging",
    "ethereum",
    "near",
    "polygon",
    "solana",
    "web3"
  ],
  "license": "MIT",
  "sideEffects": false,
  "typesVersions": {
    ">=4.2": {
      "*": [
        "./dist/types/*"
      ]
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "browser": "./dist/esm/index.js",
  "node": "./dist/cjs/index.js",
  "types": "index.d.ts",
  "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"
    }
  },
  "scripts": {
    "build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && node ./postbuild.js",
    "build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
    "build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
    "build:esm": "npx swc src -d ./dist/esm --config-file ../../.swcrc -C module.type=es6 isModule=true",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit"
  },
  "devDependencies": {
    "@types/jest": "^29.4.0",
    "@types/node": "^18.14.0",
    "tsc-alias": "^1.8.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@distributedlab/reactivity": "^1.0.0-rc.13",
    "@rarimo/bridge": "^2.6.0",
    "@rarimo/provider": "^2.6.0",
    "@rarimo/shared": "^2.6.0"
  },
  "typedocOptions": {
    "entryPoints": [
      "src/index.ts"
    ]
  }
}