{ "name": "@slack/bolt", "version": "3.22.0", "description": "A framework for building Slack apps, fast.", "author": "Slack Technologies, LLC", "license": "MIT", "keywords": [ "slack", "bot", "events-api", "slash-commands", "interactive-components", "api", "chatops", "integration", "slack-app" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*" ], "engines": { "node": ">=14.21.3", "npm": ">=6.14.18" }, "scripts": { "prepare": "npm run build", "build": "npm run build:clean && tsc", "build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output", "lint": "eslint --fix --ext .ts src", "mocha": "TS_NODE_PROJECT=tsconfig.json nyc mocha --config .mocharc.json \"src/**/*.spec.ts\"", "test": "npm run build && npm run lint && npm run mocha && npm run test:types", "test:coverage": "npm run mocha && nyc report --reporter=text", "test:types": "tsd", "watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build" }, "repository": "slackapi/bolt", "homepage": "https://slack.dev/bolt-js", "bugs": { "url": "https://github.com/slackapi/bolt-js/issues" }, "dependencies": { "@slack/logger": "^4.0.0", "@slack/oauth": "^2.6.3", "@slack/socket-mode": "^1.3.6", "@slack/types": "^2.13.0", "@slack/web-api": "^6.13.0", "@types/express": "^4.16.1", "@types/promise.allsettled": "^1.0.3", "@types/tsscmp": "^1.0.0", "axios": "^1.7.4", "express": "^4.21.0", "path-to-regexp": "^8.1.0", "promise.allsettled": "^1.0.2", "raw-body": "^2.3.3", "tsscmp": "^1.0.6" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/mocha": "^10.0.1", "@types/node": "22.5.5", "@types/sinon": "^7.0.11", "@typescript-eslint/eslint-plugin": "^4.4.1", "@typescript-eslint/parser": "^4.4.0", "chai": "~4.3.0", "eslint": "^7.26.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-airbnb-typescript": "^12.3.1", "eslint-plugin-import": "^2.28.0", "eslint-plugin-jsdoc": "^30.6.1", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-react": "^7.29.3", "eslint-plugin-react-hooks": "^4.3.0", "mocha": "^10.2.0", "nyc": "^15.1.0", "rewiremock": "^3.13.4", "shx": "^0.3.2", "sinon": "^18.0.1", "source-map-support": "^0.5.12", "ts-node": "^10.9.2", "tsd": "^0.22.0", "typescript": "4.8.4" }, "tsd": { "directory": "types-tests" } }