UNPKG

@slack/bolt

Version:

A framework for building Slack apps, fast.

86 lines (85 loc) 2.4 kB
{ "name": "@slack/bolt", "version": "4.7.2", "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": ">=18", "npm": ">=8.6.0" }, "scripts": { "build": "npm run build:clean && tsc", "build:clean": "shx rm -rf ./dist ./coverage", "changeset": "npx @changesets/cli", "lint": "npx @biomejs/biome check docs src test examples", "lint:fix": "npx @biomejs/biome check --write docs src test examples", "prepare": "npm run build", "test": "npm run build && npm run lint && npm run test:types && npm run test:coverage", "test:coverage": "c8 npm run test:unit", "test:types": "tsd --files test/types", "test:unit": "TS_NODE_PROJECT=tsconfig.json mocha --config test/unit/.mocharc.json", "version": "npm run changeset version && npm install", "watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/slackapi/bolt-js.git" }, "homepage": "https://docs.slack.dev/tools/bolt-js", "bugs": { "url": "https://github.com/slackapi/bolt-js/issues" }, "dependencies": { "@slack/logger": "^4.0.1", "@slack/oauth": "^3.0.5", "@slack/socket-mode": "^2.0.7", "@slack/types": "^2.20.1", "@slack/web-api": "^7.15.1", "axios": "^1.12.0", "express": "^5.0.0", "path-to-regexp": "^8.1.0", "raw-body": "^3", "tsscmp": "^1.0.6" }, "devDependencies": { "@biomejs/biome": "^1.9.0", "@changesets/cli": "^2.29.8", "@tsconfig/node18": "^18.2.4", "@types/chai": "^4.1.7", "@types/mocha": "^10.0.1", "@types/node": "18.19.130", "@types/proxyquire": "^1.3.31", "@types/sinon": "^17.0.4", "@types/tsscmp": "^1.0.0", "c8": "^10.1.2", "chai": "~4.3.0", "mocha": "^10.2.0", "proxyquire": "^2.1.3", "shx": "^0.3.2", "sinon": "^20.0.0", "source-map-support": "^0.5.12", "ts-node": "^10.9.2", "tsd": "^0.31.2", "typescript": "5.3.3" }, "peerDependencies": { "@types/express": "^5.0.0" } }