mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
e60bc8c408
* add .nvmrc file * follow up * make support of Node >= 20 explicit * update default Node version for contributing to the repo to 24 * run build-and-test CI job for both Node 20 and 24 * add changeset for package.json change
53 lines
1.0 KiB
JSON
53 lines
1.0 KiB
JSON
{
|
|
"name": "@chat-adapter/shared",
|
|
"version": "4.28.1",
|
|
"description": "Shared utilities for chat SDK adapters",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"chat": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.2",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vercel/chat.git",
|
|
"directory": "packages/adapter-shared"
|
|
},
|
|
"homepage": "https://github.com/vercel/chat#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/vercel/chat/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"chat",
|
|
"bot",
|
|
"adapter",
|
|
"shared"
|
|
],
|
|
"license": "MIT"
|
|
}
|