{
  "name": "@webacy-xyz/sdk-trading",
  "version": "1.9.1",
  "description": "Webacy SDK for token trading analysis - holder analysis, sniper detection, bundler detection",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@webacy-xyz/sdk-core": "1.9.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.7.0"
  },
  "keywords": [
    "webacy",
    "sdk",
    "trading",
    "token",
    "holder-analysis",
    "sniper-detection",
    "bundler-detection",
    "blockchain",
    "crypto",
    "defi"
  ],
  "author": "Webacy",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Webacy-Prod/sdk.git",
    "directory": "packages/trading"
  },
  "bugs": {
    "url": "https://github.com/Webacy-Prod/sdk/issues"
  },
  "homepage": "https://github.com/Webacy-Prod/sdk/tree/main/packages/trading#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs && npm run build:types && npm run postbuild",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:types": "tsc -p tsconfig.types.json",
    "postbuild": "node ../../scripts/fix-esm-imports.mjs dist/esm && echo '{\"type\":\"module\"}' > dist/esm/package.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts",
    "test": "vitest run",
    "test:watch": "vitest watch"
  }
}