{
  "name": "@slack/oauth",
  "version": "3.0.5",
  "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": {
    "type": "git",
    "url": "git+https://github.com/slackapi/node-slack-sdk.git"
  },
  "homepage": "https://docs.slack.dev/tools/node-slack-sdk/oauth/",
  "publishConfig": {
    "access": "public"
  },
  "bugs": {
    "url": "https://github.com/slackapi/node-slack-sdk/issues"
  },
  "scripts": {
    "build": "npm run build:clean && tsc",
    "build:clean": "shx rm -rf ./dist",
    "docs": "npx typedoc --plugin typedoc-plugin-markdown",
    "prepack": "npm run build",
    "test": "npm run test:unit",
    "test:node18": "npm run build && bash -O globstar -c 'node --test --test-reporter=spec --import tsx src/**/*.test.ts'",
    "test:unit": "npm run build && node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/**/*.test.ts",
    "watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build"
  },
  "dependencies": {
    "@slack/logger": "^4.0.1",
    "@slack/web-api": "^7.15.0",
    "@types/jsonwebtoken": "^9",
    "@types/node": ">=18",
    "jsonwebtoken": "^9"
  },
  "devDependencies": {
    "@types/sinon": "^21",
    "rewiremock": "^3",
    "sinon": "^21"
  }
}
