UNPKG

slack-rest-api-types

Version:
55 lines 1.6 kB
{ "name": "slack-rest-api-types", "version": "1.1.1", "description": "Types for Slack Web API REST endpoints", "license": "MIT", "keywords": [ "slack", "web-api", "bot", "client", "http", "api", "types" ], "types": "./dist/src/index.d.ts", "files": [ "dist/**/*" ], "author": "Johnie Hjelm <johnie@hjelm.im>", "repository": { "type": "git", "url": "git+https://github.com/johnie/slack-rest-api-types.git" }, "bugs": { "url": "https://github.com/johnie/slack-rest-api-types/issues" }, "homepage": "https://github.com/johnie/slack-rest-api-types#readme", "dependencies": { "@slack/web-api": "^7.9.3", "typescript": "^5.9.2" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@biomejs/biome": "^2.1.4", "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.29.5", "@slack/types": "^2.15.0", "@tsconfig/recommended": "^1.0.10", "@types/node": "^24.2.1", "shx": "^0.4.0", "vitest": "^3.2.4" }, "scripts": { "build": "npm run build:clean && tsc", "build:clean": "shx rm -rf ./dist", "ci": "$npm_execpath run build && $npm_execpath run check-format && $npm_execpath run check-exports && $npm_execpath run test", "test": "vitest run", "test:watch": "vitest", "format": "biome format --write ./src", "check-format": "biome check --write ./src", "check-exports": "attw --pack .", "local-release": "$npm_execpath run ci && changeset version && changeset publish", "release": "$npm_execpath run ci && changeset publish" } }