{
  "name": "@razorlabs/swap-sdk-core",
  "license": "MIT",
  "version": "1.0.11",
  "description": "🛠 An SDK for building applications on top of RazorDEX.",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "module": "dist/index.mjs",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/razorlabsorg/razor-dex-sdk.git",
    "directory": "packages/core"
  },
  "keywords": [
    "RazorDEX",
    "Movement",
    "Swap",
    "DEX",
    "SDK"
  ],
  "engines": {
    "node": ">=10"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": true
  },
  "dependencies": {
    "big.js": "6.2.2",
    "decimal.js-light": "2.5.1",
    "tiny-invariant": "1.3.3",
    "toformat": "2.0.0"
  },
  "devDependencies": {
    "@types/big.js": "6.2.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "lint": "eslint src test",
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest --run",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
  }
}