mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 17:47:27 +00:00
### [Version 0.76.2](https://github.com/lobehub/lobe-chat/compare/v0.76.1...v0.76.2)
<sup>Released on **2023-09-11**</sup>
#### 🐛 Bug Fixes
- **misc**: Fix client config.
<br/>
<details>
<summary><kbd>Improvements and Fixes</kbd></summary>
#### What's fixed
* **misc**: Fix client config ([d62f1b3](https://github.com/lobehub/lobe-chat/commit/d62f1b3))
</details>
<div align="right">
[](#readme-top)
</div>
150 lines
4.2 KiB
JSON
150 lines
4.2 KiB
JSON
{
|
|
"name": "@lobehub/chat",
|
|
"version": "0.76.2",
|
|
"description": "Lobe Chat is an open-source chatbot client using Vercel AI SDK, Typescript and Next.js",
|
|
"keywords": [
|
|
"chatbot",
|
|
"ChatGPT",
|
|
"LobeHub",
|
|
"typescript",
|
|
"Vercel AI SDK",
|
|
"Next.js",
|
|
"OpenAI"
|
|
],
|
|
"homepage": "https://github.com/lobehub/lobe-chat",
|
|
"bugs": {
|
|
"url": "https://github.com/lobehub/lobe-chat/issues/new/choose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lobehub/lobe-chat.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "LobeHub <i@lobehub.com>",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev -p 3010",
|
|
"i18n": "npm run i18n:workflow && lobe-i18n",
|
|
"i18n:workflow": "ts-node --project ./tsconfig.json scripts/i18nWorkflow/index.ts",
|
|
"lint": "npm run lint:ts && npm run lint:style && npm run type-check && npm run lint:circular",
|
|
"lint:circular": "dpdm src/**/*.ts --warning false --tree false --exit-code circular:1 -T true",
|
|
"lint:md": "remark . --quiet --frail --output",
|
|
"lint:style": "stylelint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
|
|
"lint:ts": "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
|
|
"prepare": "husky install",
|
|
"prettier": "prettier -c --write \"**/**\"",
|
|
"pull": "git pull",
|
|
"release": "semantic-release",
|
|
"start": "next start",
|
|
"stylelint": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
|
|
"test": "vitest --passWithNoTests",
|
|
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
"test:update": "vitest -u",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"lint-staged": {
|
|
"*.md": [
|
|
"remark --quiet --output --",
|
|
"prettier --write --no-error-on-unmatched-pattern"
|
|
],
|
|
"*.json": [
|
|
"prettier --write --no-error-on-unmatched-pattern"
|
|
],
|
|
"*.{js,jsx}": [
|
|
"prettier --write",
|
|
"stylelint --fix",
|
|
"eslint --fix"
|
|
],
|
|
"*.{ts,tsx}": [
|
|
"prettier --parser=typescript --write",
|
|
"stylelint --fix",
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/colors": "^7",
|
|
"@ant-design/icons": "^5",
|
|
"@emoji-mart/data": "^1",
|
|
"@emoji-mart/react": "^1",
|
|
"@icons-pack/react-simple-icons": "^9",
|
|
"@lobehub/chat-plugin-sdk": "^1.17.7",
|
|
"@lobehub/chat-plugins-gateway": "^1.5.1",
|
|
"@lobehub/ui": "latest",
|
|
"@vercel/analytics": "^1",
|
|
"ahooks": "^3",
|
|
"ai": "^2",
|
|
"antd": "^5",
|
|
"antd-style": "^3",
|
|
"brotli-wasm": "^1",
|
|
"chroma-js": "^2",
|
|
"emoji-mart": "^5",
|
|
"fast-deep-equal": "^3",
|
|
"gpt-tokenizer": "^2",
|
|
"i18next": "^23",
|
|
"idb-keyval": "^6",
|
|
"immer": "^10",
|
|
"lodash-es": "^4",
|
|
"lucide-react": "latest",
|
|
"nanoid": "^4",
|
|
"next": "13.4.7",
|
|
"openai": "^4.6.0",
|
|
"polished": "^4",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-hotkeys-hook": "^4",
|
|
"react-i18next": "^13",
|
|
"react-intersection-observer": "^9",
|
|
"react-layout-kit": "^1.7.1",
|
|
"swr": "^2",
|
|
"systemjs": "^6.14.2",
|
|
"ts-md5": "^1",
|
|
"url-join": "^5",
|
|
"use-merge-value": "^1",
|
|
"utility-types": "^3",
|
|
"uuid": "^9",
|
|
"zustand": "^4.4",
|
|
"zustand-utils": "^1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17",
|
|
"@lobehub/i18n-cli": "latest",
|
|
"@lobehub/lint": "latest",
|
|
"@next/eslint-plugin-next": "^13",
|
|
"@testing-library/jest-dom": "^6",
|
|
"@testing-library/react": "^14",
|
|
"@types/chroma-js": "^2",
|
|
"@types/lodash-es": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@types/systemjs": "^6.13.2",
|
|
"@types/testing-library__jest-dom": "^6",
|
|
"@types/uuid": "^9",
|
|
"@umijs/lint": "^4",
|
|
"@vitest/coverage-v8": "latest",
|
|
"commitlint": "^17",
|
|
"consola": "^3",
|
|
"dpdm": "^3",
|
|
"eslint": "^8",
|
|
"husky": "^8",
|
|
"i18next-browser-languagedetector": "^7",
|
|
"i18next-resources-for-ts": "^1",
|
|
"jsdom": "^22",
|
|
"lint-staged": "^14",
|
|
"next-pwa": "^5",
|
|
"node-fetch": "^3",
|
|
"prettier": "^3",
|
|
"remark": "^14",
|
|
"remark-cli": "^11",
|
|
"semantic-release": "^21",
|
|
"stylelint": "^15",
|
|
"ts-node": "^10",
|
|
"typescript": "^5",
|
|
"vitest": "latest"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
}
|
|
}
|