{
  "name": "@slack/oauth",
  "version": "3.0.3",
  "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",
    "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.9.1",
    "@types/jsonwebtoken": "^9",
    "@types/node": ">=18",
    "jsonwebtoken": "^9",
    "lodash.isstring": "^4"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.8.3",
    "@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": "^20",
    "source-map-support": "^0.5.21",
    "ts-node": "^10",
    "typescript": "5.8.2"
  }
}
