{
  "name": "@msgly/discord",
  "version": "1.10.0",
  "description": "Discord (HTTP Interactions) adapter for Msgly",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@msgly/core": "1.10.0"
  },
  "devDependencies": {
    "@types/node": "^20.11.0",
    "tsup": "^8.0.0",
    "typescript": "^5.4.0",
    "vitest": "^1.4.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AyushJain070401/msgly.git",
    "directory": "packages/adapter-discord"
  },
  "homepage": "https://ayushjain070401.github.io/msgly/",
  "bugs": {
    "url": "https://github.com/AyushJain070401/msgly/issues"
  },
  "keywords": [
    "discord",
    "messaging",
    "bot",
    "chatbot",
    "interactions",
    "webhook"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts --clean",
    "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
    "test": "vitest run",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}