Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kentcdodds/slack

package.json

35 lines · 1.0 KB · JSON
{
	"name": "@kentcdodds/slack",
	"version": "1.0.0",
	"description": "Slack user-token helpers for reading conversations and safely sending messages through Kody.",
	"type": "module",
	"exports": {
		".": "./src/index.ts",
		"./smoke-test": "./src/smoke-test.ts",
		"./list-conversations": "./src/list-conversations.ts",
		"./list-users": "./src/list-users.ts",
		"./get-history": "./src/get-history.ts",
		"./get-replies": "./src/get-replies.ts",
		"./send-message": "./src/send-message.ts"
	},
	"files": [
		"src",
		"README.md",
		"LICENSE"
	],
	"kody": {
		"id": "slack",
		"name": "Slack",
		"description": "Read Slack conversations and safely send messages as the authorizing user through the saved slack OAuth integration.",
		"tags": [
			"slack",
			"messaging",
			"oauth",
			"collaboration",
			"user-token"
		],
		"searchText": "slack user oauth xoxp read channel private channel direct message dm thread history replies users conversations send post message as user smoke test"
	},
	"license": "MIT",
	"private": false
}