mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "create-chat-sdk",
|
|
"description": "Create a new Chat SDK bot project",
|
|
"keywords": [
|
|
"vercel",
|
|
"chat-sdk",
|
|
"bot",
|
|
"scaffold",
|
|
"create",
|
|
"cli"
|
|
],
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"bin": {
|
|
"create-chat-sdk": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"_template",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"test": "vitest run --coverage",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.10.0",
|
|
"commander": "^13.0.0",
|
|
"execa": "^9.5.2",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.2",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vercel/chat.git",
|
|
"directory": "packages/create-chat-sdk"
|
|
},
|
|
"homepage": "https://chat-sdk.dev",
|
|
"bugs": {
|
|
"url": "https://github.com/vercel/chat/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT"
|
|
}
|