{
  "name": "@slack/socket-mode",
  "version": "2.0.6",
  "description": "Official library for using the Slack Platform's Socket Mode API",
  "author": "Slack Technologies, LLC",
  "license": "MIT",
  "keywords": [
    "slack",
    "socket",
    "websocket",
    "firewall",
    "bot",
    "client",
    "http",
    "websocket",
    "api",
    "proxy",
    "state",
    "connection"
  ],
  "main": "dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "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/socket-mode/",
  "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 && npm run test:integration",
    "test:node18": "npm run build && bash -c 'node --test --test-reporter=spec --import tsx src/*.test.ts' && npm run test:integration",
    "test:integration": "npm run build && node --import tsx --test test/integration.test.js",
    "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 test"
  },
  "dependencies": {
    "@slack/logger": "^4.0.1",
    "@slack/web-api": "^7.15.0",
    "@types/node": ">=18",
    "@types/ws": "^8",
    "eventemitter3": "^5",
    "ws": "^8"
  },
  "devDependencies": {
    "@types/proxyquire": "^1.3.31",
    "@types/sinon": "^21",
    "nodemon": "^3.1.0",
    "proxyquire": "^2.1.3",
    "sinon": "^21"
  }
}
