{
  "name": "djs-helper-kit",
  "version": "0.3.2",
  "description": "Drop-in Discord.js helpers: zero-config client setup, V2 cards, deploy tools, UX primitives. TypeScript-first with JS-friendly JSDoc.",
  "author": "edinlol",
  "license": "MIT",
  "keywords": [
    "discord",
    "discord.js",
    "bot",
    "typescript",
    "javascript",
    "v2",
    "components"
  ],
  "homepage": "https://github.com/CodeByEx/djs-helper-kit#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CodeByEx/djs-helper-kit.git"
  },
  "bugs": {
    "url": "https://github.com/CodeByEx/djs-helper-kit/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./v2": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./client": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./commands": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "engines": {
    "node": ">=18.17.0"
  },
  "peerDependencies": {
    "discord.js": "^14.19.0 || ^14.20.0 || ^14.x"
  },
  "devDependencies": {
    "@types/node": "^24.1.0",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "discord.js": "^14.21.0",
    "eslint": "^9.32.0",
    "prettier": "^3.6.2",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rmdir /s /q dist 2>nul || echo Clean completed",
    "prebuild": "npm run clean",
    "test": "vitest",
    "test:run": "vitest run",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm run test:run && npm run lint && npm run typecheck",
    "postversion": "git push --follow-tags"
  },
  "sideEffects": false
}
