{
  "name": "@slack/oauth",
  "version": "3.0.4",
  "description": "Official library for interacting with Slack's Oauth endpoints",
  "author": "Slack Technologies, LLC",
  "license": "MIT",
  "keywords": [
    "slack",
    "oauth",
    "bot",
    "http",
    "api"
  ],
  "main": "dist/index.js",
  "files": [
    "dist/**/*"
  ],
  "engines": {
    "node": ">=18",
    "npm": ">=8.6.0"
  },
  "repository": "slackapi/node-slack-sdk",
  "homepage": "https://tools.slack.dev/node-slack-sdk/oauth",
  "publishConfig": {
    "access": "public"
  },
  "bugs": {
    "url": "https://github.com/slackapi/node-slack-sdk/issues"
  },
  "scripts": {
    "prepare": "npm run build",
    "build": "npm run build:clean && tsc",
    "build:clean": "shx rm -rf ./dist ./coverage",
    "docs": "npx typedoc --plugin typedoc-plugin-markdown",
    "lint": "npx @biomejs/biome check .",
    "lint:fix": "npx @biomejs/biome check --write .",
    "test": "npm run lint && npm run coverage",
    "coverage": "npm run build && c8 --config ./test/.c8rc.json npm run test:mocha",
    "test:mocha": "mocha --config ./test/.mocharc.json src/*.spec.ts src/**/*.spec.ts",
    "watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build"
  },
  "dependencies": {
    "@slack/logger": "^4",
    "@slack/web-api": "^7.10.0",
    "@types/jsonwebtoken": "^9",
    "@types/node": ">=18",
    "jsonwebtoken": "^9"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.0.5",
    "@types/chai": "^4",
    "@types/mocha": "^10",
    "@types/sinon": "^17",
    "c8": "^10.1.2",
    "chai": "^4",
    "mocha": "^11",
    "mocha-junit-reporter": "^2.2.1",
    "mocha-multi-reporters": "^1.5.1",
    "rewiremock": "^3",
    "shx": "^0.4.0",
    "sinon": "^21",
    "source-map-support": "^0.5.21",
    "ts-node": "^10",
    "typedoc": "^0.28.7",
    "typedoc-plugin-markdown": "^4.7.0",
    "typescript": "5.9.2"
  }
}
