2023-05-21 07:19:20 +00:00
{
2023-05-21 15:45:37 +00:00
"name" : "@lobehub/chat" ,
2025-10-22 16:52:16 +00:00
"version" : "1.141.6" ,
2023-12-13 09:42:26 +00:00
"description" : "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application." ,
2023-07-11 11:46:11 +00:00
"keywords" : [
2023-12-13 09:42:26 +00:00
"framework" ,
2023-07-11 11:46:11 +00:00
"chatbot" ,
2023-12-13 09:42:26 +00:00
"chatgpt" ,
"nextjs" ,
"vercel-ai" ,
"openai" ,
"azure-openai" ,
"visual-model" ,
"tts" ,
"stt"
2023-07-11 11:46:11 +00:00
] ,
"homepage" : "https://github.com/lobehub/lobe-chat" ,
"bugs" : {
2023-07-26 14:23:55 +00:00
"url" : "https://github.com/lobehub/lobe-chat/issues/new/choose"
2023-07-11 11:46:11 +00:00
} ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/lobehub/lobe-chat.git"
} ,
"license" : "MIT" ,
"author" : "LobeHub <i@lobehub.com>" ,
"sideEffects" : false ,
2025-03-02 08:39:32 +00:00
"workspaces" : [
"packages/*"
] ,
2023-05-21 07:19:20 +00:00
"scripts" : {
2025-09-12 11:11:42 +00:00
"prebuild" : "tsx scripts/prebuild.mts && npm run lint" ,
2025-07-08 11:51:22 +00:00
"build" : "cross-env NODE_OPTIONS=--max-old-space-size=6144 next build" ,
2024-06-17 03:06:59 +00:00
"postbuild" : "npm run build-sitemap && npm run build-migrate-db" ,
"build-migrate-db" : "bun run db:migrate" ,
2024-09-19 14:08:14 +00:00
"build-sitemap" : "tsx ./scripts/buildSitemapIndex/index.ts" ,
2025-04-11 03:50:59 +00:00
"build:analyze" : "NODE_OPTIONS=--max-old-space-size=6144 ANALYZE=true next build" ,
2025-09-04 07:08:27 +00:00
"build:docker" : "npm run prebuild && NODE_OPTIONS=--max-old-space-size=6144 DOCKER=true next build && npm run build-sitemap" ,
2025-09-14 04:41:44 +00:00
"prebuild:electron" : "cross-env NEXT_PUBLIC_IS_DESKTOP_APP=1 tsx scripts/prebuild.mts" ,
2025-04-10 02:47:05 +00:00
"build:electron" : "cross-env NODE_OPTIONS=--max-old-space-size=6144 NEXT_PUBLIC_IS_DESKTOP_APP=1 NEXT_PUBLIC_SERVICE_MODE=server next build" ,
2025-09-12 08:04:05 +00:00
"clean:node_modules" : "bash -lc 'set -e; echo \"Removing all node_modules...\"; rm -rf node_modules; pnpm -r exec rm -rf node_modules; rm -rf apps/desktop/node_modules; echo \"All node_modules removed.\"'" ,
2025-03-14 06:24:39 +00:00
"db:generate" : "drizzle-kit generate && npm run db:generate-client && npm run workflow:dbml" ,
2024-12-22 09:20:19 +00:00
"db:generate-client" : "tsx ./scripts/migrateClientDB/compile-migrations.ts" ,
2024-09-19 14:08:14 +00:00
"db:migrate" : "MIGRATION_DB=1 tsx ./scripts/migrateServerDB/index.ts" ,
2024-06-17 03:06:59 +00:00
"db:studio" : "drizzle-kit studio" ,
2025-04-09 11:31:35 +00:00
"db:visualize" : "dbdocs build docs/development/database-schema.dbml --project lobe-chat" ,
2025-04-10 02:47:05 +00:00
"desktop:build" : "npm run desktop:build-next && npm run desktop:prepare-dist && npm run desktop:build-electron" ,
"desktop:build-electron" : "tsx scripts/electronWorkflow/buildElectron.ts" ,
2025-07-14 12:29:57 +00:00
"desktop:build-local" : "npm run desktop:build-next && npm run desktop:prepare-dist && npm run build-local --prefix=./apps/desktop" ,
2025-04-10 02:47:05 +00:00
"desktop:build-next" : "npm run build:electron" ,
"desktop:prepare-dist" : "tsx scripts/electronWorkflow/moveNextStandalone.ts" ,
2025-01-18 11:10:35 +00:00
"dev" : "next dev --turbopack -p 3010" ,
2025-04-10 02:47:05 +00:00
"dev:desktop" : "next dev --turbopack -p 3015" ,
2025-10-16 04:32:58 +00:00
"dev:mobile" : "next dev --turbopack -p 3018" ,
2025-04-21 03:05:03 +00:00
"docs:i18n" : "lobe-i18n md && npm run lint:md && npm run lint:mdx && prettier -c --write locales/**/*" ,
2024-06-20 11:07:50 +00:00
"docs:seo" : "lobe-seo && npm run lint:mdx" ,
2025-10-14 05:32:52 +00:00
"e2e" : "playwright test" ,
"e2e:install" : "playwright install" ,
"e2e:ui" : "playwright test --ui" ,
2025-06-12 06:54:05 +00:00
"i18n" : "npm run workflow:i18n && lobe-i18n && prettier -c --write \"locales/**\"" ,
2023-08-12 12:41:38 +00:00
"lint" : "npm run lint:ts && npm run lint:style && npm run type-check && npm run lint:circular" ,
2025-08-30 15:52:42 +00:00
"lint:circular" : "npm run lint:circular:main && npm run lint:circular:packages" ,
"lint:circular:main" : "dpdm src/**/*.ts --no-warning --no-tree --exit-code circular:1 --no-progress -T true --skip-dynamic-imports circular" ,
"lint:circular:packages" : "dpdm packages/**/src/**/*.ts --no-warning --no-tree --exit-code circular:1 --no-progress -T true --skip-dynamic-imports circular" ,
2025-01-08 13:32:57 +00:00
"lint:md" : "remark . --silent --output" ,
"lint:mdx" : "npm run workflow:mdx && remark \"docs/**/*.mdx\" -r ./.remarkrc.mdx.js --silent --output && eslint \"docs/**/*.mdx\" --quiet --fix" ,
2023-07-11 11:46:11 +00:00
"lint:style" : "stylelint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix" ,
2023-08-12 12:41:38 +00:00
"lint:ts" : "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix" ,
2024-02-18 13:55:49 +00:00
"prepare" : "husky" ,
2023-05-21 07:42:20 +00:00
"prettier" : "prettier -c --write \"**/**\"" ,
2023-07-26 14:23:55 +00:00
"pull" : "git pull" ,
2025-07-14 12:29:57 +00:00
"reinstall" : "rm -rf pnpm-lock.yaml && rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm install" ,
"reinstall:desktop" : "rm -rf pnpm-lock.yaml && rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm install --node-linker=hoisted" ,
2023-05-21 07:34:04 +00:00
"release" : "semantic-release" ,
2024-07-23 14:20:22 +00:00
"self-hosting:docker" : "docker build -t lobe-chat:local ." ,
2024-08-21 13:28:29 +00:00
"self-hosting:docker-cn" : "docker build -t lobe-chat-local --build-arg USE_CN_MIRROR=true ." ,
"self-hosting:docker-cn@database" : "docker build -t lobe-chat-database-local -f Dockerfile.database --build-arg USE_CN_MIRROR=true ." ,
2024-07-24 02:37:19 +00:00
"start" : "next start -p 3210" ,
2023-05-21 07:42:20 +00:00
"stylelint" : "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix" ,
2024-06-17 03:06:59 +00:00
"test" : "npm run test-app && npm run test-server" ,
2025-08-25 14:38:41 +00:00
"test-app" : "vitest run" ,
2025-09-17 15:30:04 +00:00
"test-app:coverage" : "vitest --coverage --silent='passed-only'" ,
2025-03-09 14:00:43 +00:00
"test:update" : "vitest -u" ,
2025-07-03 17:01:11 +00:00
"type-check" : "tsgo --noEmit" ,
2024-08-18 08:42:24 +00:00
"webhook:ngrok" : "ngrok http http://localhost:3011" ,
2024-12-26 03:02:47 +00:00
"workflow:cdn" : "tsx ./scripts/cdnWorkflow/index.ts" ,
2024-11-26 06:48:06 +00:00
"workflow:changelog" : "tsx ./scripts/changelogWorkflow/index.ts" ,
2024-10-23 13:41:25 +00:00
"workflow:countCharters" : "tsx scripts/countEnWord.ts" ,
2025-03-14 06:24:39 +00:00
"workflow:dbml" : "tsx ./scripts/dbmlWorkflow/index.ts" ,
2024-09-19 14:08:14 +00:00
"workflow:docs" : "tsx ./scripts/docsWorkflow/index.ts" ,
"workflow:i18n" : "tsx ./scripts/i18nWorkflow/index.ts" ,
2024-06-20 11:07:50 +00:00
"workflow:mdx" : "tsx ./scripts/mdxWorkflow/index.ts" ,
2025-04-10 02:47:05 +00:00
"workflow:readme" : "tsx ./scripts/readmeWorkflow/index.ts" ,
"workflow:set-desktop-version" : "tsx ./scripts/electronWorkflow/setDesktopVersion.ts"
2023-07-11 11:46:11 +00:00
} ,
"lint-staged" : {
"*.md" : [
2025-01-08 13:32:57 +00:00
"remark --silent --output --" ,
2023-07-11 11:46:11 +00:00
"prettier --write --no-error-on-unmatched-pattern"
] ,
2024-03-10 10:46:41 +00:00
"*.mdx" : [
2025-01-08 13:32:57 +00:00
"remark -r ./.remarkrc.mdx.js --silent --output --" ,
2024-04-10 16:28:48 +00:00
"eslint --quiet --fix"
2024-03-10 10:46:41 +00:00
] ,
2023-07-11 11:46:11 +00:00
"*.json" : [
"prettier --write --no-error-on-unmatched-pattern"
] ,
2024-07-02 05:56:37 +00:00
"*.{mjs,cjs}" : [
"prettier --write" ,
"eslint --fix"
] ,
"*.{js,jsx}" : [
2023-07-11 11:46:11 +00:00
"prettier --write" ,
"stylelint --fix" ,
"eslint --fix"
] ,
"*.{ts,tsx}" : [
"prettier --parser=typescript --write" ,
"stylelint --fix" ,
"eslint --fix"
]
2023-05-21 07:19:20 +00:00
} ,
2025-05-17 09:46:27 +00:00
"overrides" : {
"mdast-util-gfm-autolink-literal" : "2.0.0"
} ,
2023-05-21 07:19:20 +00:00
"dependencies" : {
2025-04-03 02:52:47 +00:00
"@ant-design/icons" : "^5.6.1" ,
2025-07-23 07:33:20 +00:00
"@ant-design/pro-components" : "^2.8.10" ,
2025-10-20 16:27:21 +00:00
"@anthropic-ai/sdk" : "^0.67.0" ,
2025-08-07 05:31:38 +00:00
"@auth/core" : "^0.40.0" ,
2025-09-23 06:13:48 +00:00
"@aws-sdk/client-s3" : "~3.893.0" ,
"@aws-sdk/s3-request-presigner" : "~3.893.0" ,
2025-02-16 15:08:43 +00:00
"@azure-rest/ai-inference" : "1.0.0-beta.5" ,
2025-09-12 08:04:05 +00:00
"@azure/core-auth" : "^1.10.1" ,
2025-04-03 02:52:47 +00:00
"@cfworker/json-schema" : "^4.1.1" ,
2025-10-11 07:08:26 +00:00
"@clerk/localizations" : "^3.25.7" ,
"@clerk/nextjs" : "^6.33.3" ,
"@clerk/themes" : "^2.4.25" ,
2025-04-03 02:52:47 +00:00
"@codesandbox/sandpack-react" : "^2.20.0" ,
2025-10-11 07:08:26 +00:00
"@cyntler/react-doc-viewer" : "^1.17.1" ,
2025-03-09 13:52:12 +00:00
"@electric-sql/pglite" : "0.2.17" ,
2025-09-06 01:51:52 +00:00
"@emotion/react" : "^11.14.0" ,
2025-09-12 08:04:05 +00:00
"@fal-ai/client" : "^1.6.2" ,
2025-09-13 09:45:14 +00:00
"@formkit/auto-animate" : "^0.9.0" ,
2025-10-11 07:08:26 +00:00
"@google/genai" : "^1.24.0" ,
2025-10-19 07:29:42 +00:00
"@huggingface/inference" : "^4.11.3" ,
2025-10-10 03:07:35 +00:00
"@icons-pack/react-simple-icons" : "^13.8.0" ,
2025-01-08 13:32:57 +00:00
"@khmyznikov/pwa-install" : "0.3.9" ,
2025-10-11 07:08:26 +00:00
"@langchain/community" : "^0.3.57" ,
2025-09-14 09:29:19 +00:00
"@lobechat/agent-runtime" : "workspace:*" ,
2025-08-22 06:05:01 +00:00
"@lobechat/const" : "workspace:*" ,
2025-09-12 16:12:53 +00:00
"@lobechat/context-engine" : "workspace:*" ,
2025-08-22 03:09:03 +00:00
"@lobechat/database" : "workspace:*" ,
2025-04-02 01:31:08 +00:00
"@lobechat/electron-client-ipc" : "workspace:*" ,
"@lobechat/electron-server-ipc" : "workspace:*" ,
2025-05-09 16:58:39 +00:00
"@lobechat/file-loaders" : "workspace:*" ,
2025-08-11 16:08:52 +00:00
"@lobechat/model-runtime" : "workspace:*" ,
2025-09-23 07:34:48 +00:00
"@lobechat/observability-otel" : "workspace:*" ,
2025-08-16 16:10:28 +00:00
"@lobechat/prompts" : "workspace:*" ,
2025-09-29 20:20:57 +00:00
"@lobechat/python-interpreter" : "workspace:*" ,
2025-08-22 06:05:01 +00:00
"@lobechat/utils" : "workspace:*" ,
2025-03-02 08:39:32 +00:00
"@lobechat/web-crawler" : "workspace:*" ,
2025-08-05 11:43:38 +00:00
"@lobehub/analytics" : "^1.6.0" ,
2025-09-12 08:04:05 +00:00
"@lobehub/charts" : "^2.1.2" ,
2024-07-07 06:01:50 +00:00
"@lobehub/chat-plugin-sdk" : "^1.32.4" ,
2024-05-24 11:35:01 +00:00
"@lobehub/chat-plugins-gateway" : "^1.9.0" ,
2025-10-21 08:17:08 +00:00
"@lobehub/editor" : "^1.20.2" ,
2025-10-11 07:08:26 +00:00
"@lobehub/icons" : "^2.42.0" ,
2025-07-23 07:33:20 +00:00
"@lobehub/market-sdk" : "^0.22.7" ,
2025-05-16 07:12:15 +00:00
"@lobehub/tts" : "^2.0.1" ,
2025-10-11 07:08:26 +00:00
"@lobehub/ui" : "^2.13.2" ,
"@modelcontextprotocol/sdk" : "^1.20.0" ,
"@neondatabase/serverless" : "^1.0.2" ,
"@next/third-parties" : "^15.5.4" ,
2025-10-20 02:44:35 +00:00
"@opentelemetry/exporter-jaeger" : "^2.1.0" ,
"@opentelemetry/winston-transport" : "^0.17.0" ,
2025-10-21 08:59:56 +00:00
"@react-pdf/renderer" : "^4.3.0" ,
2024-10-20 03:38:57 +00:00
"@react-spring/web" : "^9.7.5" ,
2025-10-21 07:34:57 +00:00
"@saintno/comfyui-sdk" : "^0.2.48" ,
2025-09-12 08:04:05 +00:00
"@serwist/next" : "^9.2.1" ,
2025-08-07 17:14:10 +00:00
"@t3-oss/env-nextjs" : "^0.13.8" ,
2025-10-11 07:08:26 +00:00
"@tanstack/react-query" : "^5.90.2" ,
"@trpc/client" : "^11.6.0" ,
"@trpc/next" : "^11.6.0" ,
"@trpc/react-query" : "^11.6.0" ,
"@trpc/server" : "^11.6.0" ,
2025-04-03 02:52:47 +00:00
"@vercel/analytics" : "^1.5.0" ,
2025-01-07 08:51:51 +00:00
"@vercel/edge-config" : "^1.4.0" ,
2025-10-11 07:08:26 +00:00
"@vercel/functions" : "^3.1.3" ,
2025-04-03 02:52:47 +00:00
"@vercel/speed-insights" : "^1.2.0" ,
2025-10-21 08:42:58 +00:00
"@virtuoso.dev/masonry" : "^1.3.5" ,
2025-05-01 21:53:14 +00:00
"@xterm/xterm" : "^5.5.0" ,
2025-09-12 08:04:05 +00:00
"ahooks" : "^3.9.5" ,
2025-10-11 07:08:26 +00:00
"antd" : "^5.27.4" ,
2024-10-25 04:22:40 +00:00
"antd-style" : "^3.7.1" ,
2024-06-20 19:22:35 +00:00
"brotli-wasm" : "^3.0.1" ,
2024-12-26 13:37:00 +00:00
"chroma-js" : "^3.1.2" ,
2025-07-08 11:51:22 +00:00
"cookie" : "^1.0.2" ,
2025-05-20 04:49:14 +00:00
"countries-and-timezones" : "^3.8.0" ,
2025-09-12 08:04:05 +00:00
"dayjs" : "^1.11.18" ,
2025-10-11 07:08:26 +00:00
"debug" : "^4.4.3" ,
2024-04-10 16:28:48 +00:00
"dexie" : "^3.2.7" ,
2025-09-12 08:04:05 +00:00
"diff" : "^8.0.2" ,
2025-10-11 07:08:26 +00:00
"drizzle-orm" : "^0.44.6" ,
2024-06-17 03:06:59 +00:00
"drizzle-zod" : "^0.5.1" ,
2025-03-05 18:10:06 +00:00
"epub2" : "^3.0.2" ,
2024-04-10 16:28:48 +00:00
"fast-deep-equal" : "^3.1.3" ,
2025-08-31 12:05:38 +00:00
"file-type" : "^21.0.0" ,
2025-10-11 07:08:26 +00:00
"framer-motion" : "^12.23.24" ,
"gpt-tokenizer" : "^3.2.0" ,
2025-06-22 06:06:37 +00:00
"gray-matter" : "^4.0.3" ,
2025-03-05 18:10:06 +00:00
"html-to-text" : "^9.0.5" ,
2025-10-11 07:08:26 +00:00
"i18next" : "^25.6.0" ,
2025-07-23 07:33:20 +00:00
"i18next-browser-languagedetector" : "^8.2.0" ,
2024-04-20 15:30:33 +00:00
"i18next-resources-to-backend" : "^1.2.1" ,
2025-05-20 04:49:14 +00:00
"idb-keyval" : "^6.2.2" ,
2025-09-12 08:04:05 +00:00
"immer" : "^10.1.3" ,
2025-07-29 10:20:16 +00:00
"jose" : "^5.10.0" ,
2025-06-02 16:22:14 +00:00
"js-sha256" : "^0.11.1" ,
2024-09-03 13:28:23 +00:00
"jsonl-parse-stringify" : "^1.0.3" ,
2025-04-12 16:49:31 +00:00
"keyv" : "^4.5.4" ,
2025-10-11 07:08:26 +00:00
"langchain" : "^0.3.35" ,
2025-09-12 08:04:05 +00:00
"langfuse" : "^3.38.5" ,
"langfuse-core" : "^3.38.5" ,
2024-04-10 16:28:48 +00:00
"lodash-es" : "^4.17.21" ,
2025-09-14 04:26:44 +00:00
"lucide-react" : "^0.544.0" ,
2025-10-11 07:08:26 +00:00
"mammoth" : "^1.11.0" ,
2025-06-22 06:06:37 +00:00
"markdown-to-txt" : "^2.0.1" ,
2025-10-21 08:32:17 +00:00
"marked" : "^16.3.0" ,
2025-02-01 15:30:11 +00:00
"mdast-util-to-markdown" : "^2.1.2" ,
2025-08-29 17:28:16 +00:00
"model-bank" : "workspace:*" ,
2025-09-12 08:04:05 +00:00
"modern-screenshot" : "^4.6.6" ,
2025-10-11 07:08:26 +00:00
"nanoid" : "^5.1.6" ,
2025-07-23 07:33:20 +00:00
"next" : "~15.3.5" ,
2025-07-19 17:03:35 +00:00
"next-auth" : "5.0.0-beta.29" ,
2025-01-08 13:32:57 +00:00
"next-mdx-remote" : "^5.0.0" ,
2025-09-12 08:04:05 +00:00
"nextjs-toploader" : "^3.9.17" ,
2025-07-08 11:51:22 +00:00
"node-machine-id" : "^1.1.12" ,
2024-04-10 16:28:48 +00:00
"numeral" : "^2.0.6" ,
2025-10-11 07:08:26 +00:00
"nuqs" : "^2.7.1" ,
2025-07-07 06:22:20 +00:00
"officeparser" : "5.1.1" ,
2025-09-12 08:04:05 +00:00
"oidc-provider" : "^9.5.1" ,
2025-09-30 04:32:00 +00:00
"ollama" : "^0.6.0" ,
2025-06-02 16:22:14 +00:00
"openai" : "^4.104.0" ,
2025-10-21 02:01:09 +00:00
"openapi-fetch" : "^0.14.0" ,
2024-06-19 18:26:18 +00:00
"partial-json" : "^0.1.7" ,
2025-05-03 02:01:01 +00:00
"path-browserify-esm" : "^1.0.6" ,
2024-08-17 14:29:05 +00:00
"pdf-parse" : "^1.1.1" ,
2024-12-19 17:30:35 +00:00
"pdfjs-dist" : "4.8.69" ,
2025-10-21 08:32:17 +00:00
"pdfkit" : "^0.17.2" ,
2025-07-23 07:33:20 +00:00
"pg" : "^8.16.3" ,
2025-10-11 07:08:26 +00:00
"pino" : "^9.13.1" ,
2024-12-26 03:02:47 +00:00
"plaiceholder" : "^3.0.0" ,
2024-04-10 16:28:48 +00:00
"polished" : "^4.3.1" ,
2025-10-21 15:07:14 +00:00
"posthog-js" : "~1.278.0" ,
2025-07-14 12:29:57 +00:00
"pure-rand" : "^7.0.1" ,
2025-08-07 17:14:10 +00:00
"pwa-install-handler" : "^2.6.3" ,
2025-10-11 07:08:26 +00:00
"query-string" : "^9.3.1" ,
2024-03-22 08:07:06 +00:00
"random-words" : "^2.0.1" ,
2025-10-11 07:08:26 +00:00
"react" : "^19.2.0" ,
2025-04-03 02:52:47 +00:00
"react-confetti" : "^6.4.0" ,
2025-10-11 07:08:26 +00:00
"react-dom" : "^19.2.0" ,
2024-07-13 06:39:11 +00:00
"react-fast-marquee" : "^1.6.5" ,
2025-06-22 06:06:37 +00:00
"react-hotkeys-hook" : "^5.1.0" ,
2025-10-11 07:08:26 +00:00
"react-i18next" : "^15.7.4" ,
2025-07-26 08:32:55 +00:00
"react-layout-kit" : "^2.0.0" ,
2024-04-10 16:28:48 +00:00
"react-lazy-load" : "^4.0.1" ,
2024-12-20 05:29:18 +00:00
"react-pdf" : "^9.2.1" ,
2025-10-22 15:35:49 +00:00
"react-responsive" : "^10.0.1" ,
2025-04-03 02:52:47 +00:00
"react-rnd" : "^10.5.2" ,
2025-10-22 15:35:49 +00:00
"react-router-dom" : "^7.9.4" ,
2025-09-12 08:04:05 +00:00
"react-scan" : "^0.4.3" ,
2025-10-11 07:08:26 +00:00
"react-virtuoso" : "^4.14.1" ,
2024-05-26 10:37:19 +00:00
"react-wrap-balancer" : "^1.1.1" ,
2025-01-08 13:32:57 +00:00
"remark" : "^15.0.1" ,
2025-04-03 02:52:47 +00:00
"remark-gfm" : "^4.0.1" ,
2025-01-08 13:32:57 +00:00
"remark-html" : "^16.0.1" ,
2025-09-12 08:04:05 +00:00
"resolve-accept-language" : "^3.1.13" ,
2024-04-10 16:28:48 +00:00
"rtl-detect" : "^1.1.2" ,
2025-10-11 07:08:26 +00:00
"semver" : "^7.7.3" ,
"sharp" : "^0.34.4" ,
"shiki" : "^3.13.0" ,
2025-10-01 19:31:20 +00:00
"ssrf-safe-fetch" : "workspace:*" ,
2025-07-29 16:17:23 +00:00
"stripe" : "^17.7.0" ,
2025-01-07 08:51:51 +00:00
"superjson" : "^2.2.2" ,
2025-10-11 07:08:26 +00:00
"svix" : "^1.77.0" ,
"swr" : "^2.3.6" ,
2024-04-30 10:05:34 +00:00
"systemjs" : "^6.15.1" ,
2025-10-11 07:08:26 +00:00
"tokenx" : "^1.1.0" ,
"ts-md5" : "^2.0.1" ,
2025-09-12 08:04:05 +00:00
"ua-parser-js" : "^1.0.41" ,
2025-01-23 17:23:27 +00:00
"unstructured-client" : "^0.19.0" ,
2024-04-10 16:28:48 +00:00
"url-join" : "^5.0.0" ,
"use-merge-value" : "^1.2.0" ,
2025-04-03 02:52:47 +00:00
"uuid" : "^11.1.0" ,
2025-09-15 03:16:58 +00:00
"word-extractor" : "^1.0.4" ,
2025-07-23 07:33:20 +00:00
"ws" : "^8.18.3" ,
2025-08-07 17:14:10 +00:00
"yaml" : "^2.8.1" ,
2025-07-23 07:33:20 +00:00
"zod" : "^3.25.76" ,
2025-05-22 15:12:09 +00:00
"zustand" : "5.0.4" ,
2025-09-29 19:54:12 +00:00
"zustand-utils" : "^2.1.1"
2023-05-21 07:34:04 +00:00
} ,
"devDependencies" : {
2025-05-20 04:49:14 +00:00
"@commitlint/cli" : "^19.8.1" ,
2024-12-15 06:04:10 +00:00
"@edge-runtime/vm" : "^5.0.0" ,
2025-10-11 07:08:26 +00:00
"@huggingface/tasks" : "^0.19.50" ,
2025-08-06 05:23:27 +00:00
"@lobechat/types" : "workspace:*" ,
2025-07-10 01:46:30 +00:00
"@lobehub/i18n-cli" : "^1.25.1" ,
2025-06-02 16:22:14 +00:00
"@lobehub/lint" : "^1.26.2" ,
2025-07-23 07:33:20 +00:00
"@lobehub/market-types" : "^1.11.4" ,
"@lobehub/seo-cli" : "^1.7.0" ,
2025-10-11 07:08:26 +00:00
"@next/bundle-analyzer" : "^15.5.4" ,
"@next/eslint-plugin-next" : "^15.5.4" ,
2024-06-20 19:22:35 +00:00
"@peculiar/webcrypto" : "^1.5.0" ,
2025-10-14 05:32:52 +00:00
"@playwright/test" : "^1.49.1" ,
2025-06-12 06:54:05 +00:00
"@prettier/sync" : "^0.6.1" ,
2024-11-26 06:48:06 +00:00
"@semantic-release/exec" : "^6.0.3" ,
2025-10-07 15:27:19 +00:00
"@testing-library/jest-dom" : "^6.9.1" ,
2025-04-03 02:52:47 +00:00
"@testing-library/react" : "^16.3.0" ,
2025-01-24 02:01:41 +00:00
"@testing-library/user-event" : "^14.6.1" ,
2025-04-03 02:52:47 +00:00
"@types/chroma-js" : "^3.1.1" ,
2024-12-26 03:02:47 +00:00
"@types/crypto-js" : "^4.2.2" ,
2024-03-22 08:07:06 +00:00
"@types/debug" : "^4.1.12" ,
2024-11-26 06:48:06 +00:00
"@types/fs-extra" : "^11.0.4" ,
2024-04-28 09:03:58 +00:00
"@types/ip" : "^1.1.3" ,
2024-04-10 16:28:48 +00:00
"@types/json-schema" : "^7.0.15" ,
2025-07-23 07:33:20 +00:00
"@types/lodash" : "^4.17.20" ,
2024-04-10 16:28:48 +00:00
"@types/lodash-es" : "^4.17.12" ,
2025-10-11 07:08:26 +00:00
"@types/node" : "^22.18.9" ,
2024-04-10 16:28:48 +00:00
"@types/numeral" : "^2.0.5" ,
2025-09-12 08:04:05 +00:00
"@types/oidc-provider" : "^9.5.0" ,
2025-10-21 08:32:17 +00:00
"@types/pdfkit" : "^0.17.3" ,
2025-08-07 17:14:10 +00:00
"@types/pg" : "^8.15.5" ,
2025-10-11 07:08:26 +00:00
"@types/react" : "^19.2.2" ,
"@types/react-dom" : "^19.2.1" ,
2024-04-10 16:28:48 +00:00
"@types/rtl-detect" : "^1.0.3" ,
2025-09-12 08:04:05 +00:00
"@types/semver" : "^7.7.1" ,
2025-04-03 02:52:47 +00:00
"@types/systemjs" : "^6.15.3" ,
2024-04-10 16:28:48 +00:00
"@types/ua-parser-js" : "^0.7.39" ,
2024-09-18 17:45:55 +00:00
"@types/unist" : "^3.0.3" ,
2025-04-03 02:52:47 +00:00
"@types/ws" : "^8.18.1" ,
2025-07-12 16:45:15 +00:00
"@typescript/native-preview" : "7.0.0-dev.20250711.1" ,
2025-07-23 07:33:20 +00:00
"@vitest/coverage-v8" : "^3.2.4" ,
2024-04-10 16:28:48 +00:00
"ajv-keywords" : "^5.1.0" ,
2025-05-20 04:49:14 +00:00
"commitlint" : "^19.8.1" ,
2025-04-03 02:52:47 +00:00
"consola" : "^3.4.2" ,
2025-10-11 07:08:26 +00:00
"cross-env" : "^10.1.0" ,
2024-12-26 03:02:47 +00:00
"crypto-js" : "^4.2.0" ,
2025-10-11 07:08:26 +00:00
"dbdocs" : "^0.16.2" ,
"dotenv" : "^17.2.3" ,
2025-09-12 08:04:05 +00:00
"dotenv-expand" : "^12.0.3" ,
2025-10-11 07:08:26 +00:00
"dpdm-fast" : "^1.0.14" ,
2025-03-14 06:24:39 +00:00
"drizzle-dbml-generator" : "^0.10.0" ,
2025-10-11 07:08:26 +00:00
"drizzle-kit" : "^0.31.5" ,
2024-10-20 03:38:57 +00:00
"eslint" : "^8.57.1" ,
2025-07-23 07:33:20 +00:00
"eslint-plugin-mdx" : "^3.6.2" ,
2025-10-11 07:08:26 +00:00
"fake-indexeddb" : "^6.2.3" ,
"fs-extra" : "^11.3.2" ,
2025-07-23 07:33:20 +00:00
"glob" : "^11.0.3" ,
2025-10-11 07:09:05 +00:00
"happy-dom" : "^20.0.0" ,
2025-01-07 08:51:51 +00:00
"husky" : "^9.1.7" ,
2025-10-11 07:08:26 +00:00
"import-in-the-middle" : "^1.15.0" ,
2024-04-10 16:28:48 +00:00
"just-diff" : "^6.0.2" ,
2025-05-20 04:49:14 +00:00
"lint-staged" : "^15.5.2" ,
2024-04-10 16:28:48 +00:00
"lodash" : "^4.17.21" ,
2025-01-07 08:51:51 +00:00
"markdown-table" : "^3.0.4" ,
2025-04-20 16:54:23 +00:00
"mcp-hello-world" : "^1.1.2" ,
2025-10-11 07:08:26 +00:00
"mime" : "^4.1.0" ,
2024-04-10 16:28:48 +00:00
"node-fetch" : "^3.3.2" ,
2025-09-12 08:04:05 +00:00
"node-gyp" : "^11.4.2" ,
"openapi-typescript" : "^7.9.1" ,
2025-01-07 08:51:51 +00:00
"p-map" : "^7.0.3" ,
2025-07-23 07:33:20 +00:00
"prettier" : "^3.6.2" ,
2025-01-08 13:32:57 +00:00
"remark-cli" : "^12.0.1" ,
"remark-frontmatter" : "^5.0.0" ,
2025-09-12 08:04:05 +00:00
"remark-mdx" : "^3.1.1" ,
2025-01-08 13:32:57 +00:00
"remark-parse" : "^11.0.0" ,
2025-09-28 05:12:14 +00:00
"require-in-the-middle" : "^7.5.2" ,
2024-04-10 16:28:48 +00:00
"semantic-release" : "^21.1.2" ,
2025-09-12 08:04:05 +00:00
"serwist" : "^9.2.1" ,
2024-04-10 16:28:48 +00:00
"stylelint" : "^15.11.0" ,
2025-10-11 07:08:26 +00:00
"tsx" : "^4.20.6" ,
2025-07-14 12:29:57 +00:00
"type-fest" : "^4.41.0" ,
2025-10-11 07:08:26 +00:00
"typescript" : "^5.9.3" ,
2024-06-20 19:22:35 +00:00
"unified" : "^11.0.5" ,
2024-04-10 16:28:48 +00:00
"unist-util-visit" : "^5.0.0" ,
2025-10-11 07:08:26 +00:00
"vite" : "^7.1.9" ,
2025-08-22 06:05:01 +00:00
"vitest" : "^3.2.4"
2023-07-15 11:22:16 +00:00
} ,
2025-10-19 07:26:09 +00:00
"packageManager" : "pnpm@10.18.3" ,
2023-07-15 11:22:16 +00:00
"publishConfig" : {
"access" : "public" ,
"registry" : "https://registry.npmjs.org"
2025-01-03 05:50:45 +00:00
} ,
"pnpm" : {
2025-05-10 06:29:22 +00:00
"onlyBuiltDependencies" : [
2025-10-05 16:09:58 +00:00
"@vercel/speed-insights"
2025-05-10 06:29:22 +00:00
] ,
2025-01-09 04:26:19 +00:00
"overrides" : {
"mdast-util-gfm-autolink-literal" : "2.0.0"
2025-01-03 05:50:45 +00:00
}
2023-07-27 02:53:42 +00:00
}
2025-10-21 08:59:56 +00:00
}