{
  "name": "@uniswap-widget/core",
  "version": "1.0.6",
  "type": "module",
  "description": "Framework-agnostic core for the Uniswap swap widget: trading logic, types, and themes",
  "license": "MIT",
  "author": "houtanrocky (https://github.com/houtanrocky)",
  "homepage": "https://houtanrocky.github.io/uniswap-widget/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/houtanrocky/uniswap-widget.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/houtanrocky/uniswap-widget/issues"
  },
  "main": "./dist/index.umd.js",
  "module": "./dist/index.es.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.js",
      "require": "./dist/index.umd.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "uniswap",
    "swap",
    "widget",
    "defi",
    "ethereum",
    "core",
    "framework-agnostic",
    "web3",
    "dex",
    "token-swap",
    "base",
    "ethers",
    "blockchain"
  ],
  "peerDependencies": {
    "@uniswap/sdk-core": ">=5.0.0",
    "@uniswap/v3-sdk": ">=3.0.0",
    "@uniswap/v3-core": ">=1.0.0",
    "ethers": ">=5.7.0 <7.0.0"
  },
  "devDependencies": {
    "@uniswap/sdk-core": "^5.0.0",
    "@uniswap/v3-core": "^1.0.1",
    "@uniswap/v3-sdk": "^3.18.1",
    "@vitest/coverage-v8": "^2.1.8",
    "ethers": "^5.7.2",
    "terser": "^5.41.0",
    "typescript": "~5.6.2",
    "vite": "^5.4.10",
    "vite-plugin-dts": "^3.7.3",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "tsc --noEmit && vite build",
    "build:watch": "vite build --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}