chat
Version:
Unified chat abstraction for Slack, Teams, Google Chat, and Discord
94 lines • 2.1 kB
JSON
{
"name": "chat",
"version": "4.29.0",
"description": "Unified chat abstraction for Slack, Teams, Google Chat, and Discord",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./ai": {
"types": "./dist/ai/index.d.ts",
"import": "./dist/ai/index.js"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js"
}
},
"files": [
"dist",
"docs",
"resources"
],
"dependencies": {
"@workflow/serde": "4.1.0-beta.2",
"mdast-util-to-string": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"remend": "^1.2.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^25.3.2",
"ai": "^6.0.182",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"peerDependencies": {
"ai": "^6.0.182",
"zod": "^3.0.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"ai": {
"optional": true
},
"zod": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/chat.git",
"directory": "packages/chat-sdk"
},
"homepage": "https://github.com/vercel/chat#readme",
"bugs": {
"url": "https://github.com/vercel/chat/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"chat",
"slack",
"teams",
"discord",
"google-chat",
"bot"
],
"license": "MIT",
"scripts": {
"build": "pnpm clean && tsup && cp -r ../../apps/docs/content/docs ./docs",
"dev": "tsup --watch",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist docs"
}
}