{
  "name": "@dima_aryze/reforge",
  "version": "1.0.0",
  "type": "module",
  "description": "TypeScript/JavaScript SDK for Reforge - Cross-chain token operations",
  "keywords": [
    "reforge",
    "sdk",
    "api",
    "typescript",
    "javascript",
    "aryze"
  ],
  "homepage": "https://github.com/aryze/reforge#readme",
  "bugs": {
    "url": "https://github.com/aryze/reforge/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aryze/reforge.git"
  },
  "license": "MIT",
  "author": "Dima Rud <dmr@aryze.io>",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "browser": "dist/umd/reforge.min.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "browser": "./dist/umd/reforge.min.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "pnpm run clean && pnpm run build:types && pnpm run build:cjs && pnpm run build:esm && pnpm run build:umd",
    "build:types": "tsc --emitDeclarationOnly --outDir dist/types",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "build:esm": "tsc --module esnext --outDir dist/esm",
    "build:umd": "rollup -c rollup.config.js",
    "clean": "rm -rf dist coverage .nyc_output",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "lint": "eslint src/**/*.ts tests/**/*.ts",
    "lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
    "format": "prettier --write \"{src,tests}/**/*.{ts,js,json,md}\"",
    "format:check": "prettier --check \"{src,tests}/**/*.{ts,js,json,md}\"",
    "typecheck": "tsc --noEmit",
    "validate": "pnpm run typecheck && pnpm run lint && pnpm run test:ci",
    "prepublishOnly": "pnpm run typecheck && pnpm run lint && pnpm run build",
    "release": "np",
    "release:beta": "np --tag=beta",
    "size": "size-limit",
    "docs:generate": "typedoc src/index.ts --out docs --exclude '**/*.test.ts'",
    "docs:serve": "cd docs && python -m http.server 8080"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-typescript": "^11.1.5",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.9.0",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "eslint": "^8.54.0",
    "eslint-config-prettier": "^9.0.0",
    "jest": "^29.7.0",
    "np": "^9.2.0",
    "prettier": "^3.1.0",
    "rollup": "^4.5.0",
    "rollup-plugin-terser": "^7.0.2",
    "size-limit": "^11.0.0",
    "ts-jest": "^29.1.1",
    "tslib": "2.8.1",
    "typedoc": "^0.25.0",
    "typescript": "^5.2.2"
  },
  "dependencies": {
    "axios": "^1.6.2"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
