2023-05-21 07:19:20 +00:00
{
2025-10-30 13:19:01 +00:00
"name" : "@lobehub/lobehub" ,
2025-12-23 11:10:42 +00:00
"version" : "2.0.0-next.176" ,
2025-10-30 13:19:01 +00:00
"description" : "LobeHub - an open-source,comprehensive AI Agent 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" : [
2025-10-22 18:15:24 +00:00
"packages/*" ,
2025-12-09 07:01:18 +00:00
"e2e" ,
"apps/desktop/src/main"
2025-03-02 08:39:32 +00:00
] ,
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-11-02 14:03:18 +00:00
"build" : "cross-env NODE_OPTIONS=--max-old-space-size=6144 next build --webpack" ,
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-11-02 14:03:18 +00:00
"build:analyze" : "NODE_OPTIONS=--max-old-space-size=6144 ANALYZE=true next build --webpack" ,
"build:docker" : "npm run prebuild && NODE_OPTIONS=--max-old-space-size=6144 DOCKER=true next build --webpack && npm run build-sitemap" ,
2025-12-20 12:23:40 +00:00
"build:electron" : "cross-env NODE_OPTIONS=--max-old-space-size=6144 NEXT_PUBLIC_IS_DESKTOP_APP=1 tsx scripts/electronWorkflow/buildNextApp.mts" ,
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" ,
2025-12-20 12:23:40 +00:00
"desktop:prepare-dist" : "tsx scripts/electronWorkflow/moveNextExports.ts" ,
2025-11-01 16:53:13 +00:00
"dev" : "next dev -p 3010" ,
2025-12-20 12:23:40 +00:00
"dev:bun" : "bun --bun next dev -p 3010" ,
"dev:desktop" : "cross-env NEXT_PUBLIC_IS_DESKTOP_APP=1 tsx scripts/runNextDesktop.mts dev -p 3015" ,
"dev:desktop:static" : "cross-env DESKTOP_RENDERER_STATIC=1 npm run electron:dev --prefix=./apps/desktop" ,
2025-11-01 16:53:13 +00:00
"dev:mobile" : "next dev -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-22 18:15:24 +00:00
"e2e" : "cd e2e && npm run test:smoke" ,
2025-10-14 05:32:52 +00:00
"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/**\"" ,
2025-12-20 12:20:07 +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-11-21 06:18:10 +00:00
"lint:console" : "tsx scripts/checkConsoleLog.mts" ,
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" ,
2025-12-20 12:23:40 +00:00
"lint:unused" : "knip --include files,exports,types,enumMembers,duplicates" ,
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-12-20 12:23:40 +00:00
"qstash" : "pnpx @upstash/qstash-cli@latest dev" ,
2025-11-27 12:10:40 +00:00
"reinstall" : "rm -rf .next && rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm install" ,
2025-07-14 12:29:57 +00:00
"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" ,
2025-10-30 13:02:42 +00:00
"self-hosting:docker" : "docker build -t lobehub:local ." ,
"self-hosting:docker-cn" : "docker build -t lobehub-local --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-10-22 18:15:24 +00:00
"test:e2e" : "pnpm --filter @lobechat/e2e-tests test" ,
"test:e2e:smoke" : "pnpm --filter @lobechat/e2e-tests test:smoke" ,
2025-03-09 14:00:43 +00:00
"test:update" : "vitest -u" ,
2025-12-20 12:23:40 +00:00
"tunnel:cloudflare" : "cloudflared tunnel --url http://localhost:3010" ,
"tunnel:ngrok" : "ngrok http http://localhost:3011" ,
2025-12-20 12:20:07 +00:00
"type-check" : "tsgo --noEmit" ,
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-11-23 11:36:36 +00:00
"overrides" : {
"stylelint-config-clean-order" : "7.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-11-03 04:56:15 +00:00
"@anthropic-ai/sdk" : "^0.67.1" ,
2025-12-20 12:23:40 +00:00
"@atlaskit/pragmatic-drag-and-drop" : "^1.7.7" ,
"@atlaskit/pragmatic-drag-and-drop-hitbox" : "^1.1.0" ,
2025-08-07 05:31:38 +00:00
"@auth/core" : "^0.40.0" ,
2025-11-16 03:31:49 +00:00
"@aws-sdk/client-s3" : "~3.932.0" ,
"@aws-sdk/s3-request-presigner" : "~3.932.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-12-23 07:19:42 +00:00
"@better-auth/expo" : "^1.4.6" ,
"@better-auth/passkey" : "^1.4.6" ,
2025-04-03 02:52:47 +00:00
"@cfworker/json-schema" : "^4.1.1" ,
2025-12-11 09:14:25 +00:00
"@clerk/localizations" : "^3.30.1" ,
"@clerk/nextjs" : "^6.36.2" ,
"@clerk/themes" : "^2.4.43" ,
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-12-20 12:23:40 +00:00
"@dnd-kit/core" : "^6.3.1" ,
"@dnd-kit/utilities" : "^3.2.2" ,
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-11-03 04:56:15 +00:00
"@fal-ai/client" : "^1.7.2" ,
2025-09-13 09:45:14 +00:00
"@formkit/auto-animate" : "^0.9.0" ,
2025-12-11 09:14:25 +00:00
"@google/genai" : "^1.33.0" ,
2025-12-20 12:23:40 +00:00
"@henrygd/queue" : "^1.2.0" ,
2025-12-11 09:14:25 +00:00
"@huggingface/inference" : "^4.13.5" ,
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-12-11 09:14:25 +00:00
"@langchain/community" : "^0.3.58" ,
2025-09-14 09:29:19 +00:00
"@lobechat/agent-runtime" : "workspace:*" ,
2025-12-20 12:23:40 +00:00
"@lobechat/builtin-agents" : "workspace:*" ,
"@lobechat/builtin-tool-agent-builder" : "workspace:*" ,
"@lobechat/builtin-tool-group-agent-builder" : "workspace:*" ,
"@lobechat/builtin-tool-group-management" : "workspace:*" ,
"@lobechat/builtin-tool-gtd" : "workspace:*" ,
"@lobechat/builtin-tool-knowledge-base" : "workspace:*" ,
"@lobechat/builtin-tool-local-system" : "workspace:*" ,
"@lobechat/builtin-tool-memory" : "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-11-07 08:44:03 +00:00
"@lobechat/conversation-flow" : "workspace:*" ,
2025-08-22 03:09:03 +00:00
"@lobechat/database" : "workspace:*" ,
2025-12-20 12:23:40 +00:00
"@lobechat/desktop-bridge" : "workspace:*" ,
2025-04-02 01:31:08 +00:00
"@lobechat/electron-client-ipc" : "workspace:*" ,
"@lobechat/electron-server-ipc" : "workspace:*" ,
2025-11-11 11:39:36 +00:00
"@lobechat/fetch-sse" : "workspace:*" ,
2025-05-09 16:58:39 +00:00
"@lobechat/file-loaders" : "workspace:*" ,
2025-12-20 12:23:40 +00:00
"@lobechat/memory-user-memory" : "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-12-09 07:01:18 +00:00
"@lobehub/desktop-ipc-typings" : "workspace:*" ,
2025-12-20 12:23:40 +00:00
"@lobehub/editor" : "^1.34.4" ,
2025-12-11 09:14:25 +00:00
"@lobehub/icons" : "^2.45.0" ,
2025-12-20 12:23:40 +00:00
"@lobehub/market-sdk" : "^0.23.8" ,
2025-05-16 07:12:15 +00:00
"@lobehub/tts" : "^2.0.1" ,
2025-12-20 12:23:40 +00:00
"@lobehub/ui" : "^2.24.2" ,
2025-12-11 09:14:25 +00:00
"@modelcontextprotocol/sdk" : "^1.24.3" ,
2025-10-11 07:08:26 +00:00
"@neondatabase/serverless" : "^1.0.2" ,
2025-12-20 12:23:40 +00:00
"@next/third-parties" : "^16.0.10" ,
2025-11-03 04:56:15 +00:00
"@opentelemetry/exporter-jaeger" : "^2.2.0" ,
2025-11-21 06:20:04 +00:00
"@opentelemetry/winston-transport" : "^0.19.0" ,
2025-11-03 04:56:15 +00:00
"@react-pdf/renderer" : "^4.3.1" ,
2024-10-20 03:38:57 +00:00
"@react-spring/web" : "^9.7.5" ,
2025-12-20 12:23:40 +00:00
"@react-three/drei" : "^10.7.7" ,
"@react-three/fiber" : "^9.4.2" ,
2025-11-03 04:56:15 +00:00
"@saintno/comfyui-sdk" : "^0.2.49" ,
2025-11-30 11:39:26 +00:00
"@serwist/next" : "^9.2.3" ,
2025-08-07 17:14:10 +00:00
"@t3-oss/env-nextjs" : "^0.13.8" ,
2025-12-11 09:14:25 +00:00
"@tanstack/react-query" : "^5.90.12" ,
2025-11-30 11:39:26 +00:00
"@trpc/client" : "^11.7.2" ,
"@trpc/next" : "^11.7.2" ,
"@trpc/react-query" : "^11.7.2" ,
"@trpc/server" : "^11.7.2" ,
2025-12-20 12:23:40 +00:00
"@upstash/qstash" : "^2.8.4" ,
"@upstash/redis" : "^1.35.8" ,
"@upstash/workflow" : "^0.2.23" ,
2025-12-11 09:14:25 +00:00
"@vercel/analytics" : "^1.6.1" ,
2025-11-03 04:56:15 +00:00
"@vercel/edge-config" : "^1.4.3" ,
2025-11-30 11:39:26 +00:00
"@vercel/functions" : "^3.3.4" ,
2025-12-11 09:14:25 +00:00
"@vercel/speed-insights" : "^1.3.1" ,
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-11-17 04:00:44 +00:00
"@zumer/snapdom" : "^1.9.14" ,
2025-11-03 04:56:15 +00:00
"ahooks" : "^3.9.6" ,
2025-11-30 11:39:26 +00:00
"antd" : "^5.29.1" ,
2024-10-25 04:22:40 +00:00
"antd-style" : "^3.7.1" ,
2025-12-03 11:14:40 +00:00
"async-retry" : "^1.3.3" ,
2025-12-11 09:14:25 +00:00
"better-auth" : "^1.4.6" ,
2025-12-04 17:35:20 +00:00
"better-auth-harmony" : "^1.2.5" ,
2024-06-20 19:22:35 +00:00
"brotli-wasm" : "^3.0.1" ,
2025-11-30 11:39:26 +00:00
"chroma-js" : "^3.2.0" ,
2025-11-20 15:27:08 +00:00
"cmdk" : "^1.1.1" ,
2025-11-30 11:39:26 +00:00
"cookie" : "^1.1.1" ,
2025-05-20 04:49:14 +00:00
"countries-and-timezones" : "^3.8.0" ,
2025-11-03 04:56:15 +00:00
"dayjs" : "^1.11.19" ,
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-11-03 04:56:15 +00:00
"drizzle-orm" : "^0.44.7" ,
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" ,
2025-12-20 12:23:40 +00:00
"es-toolkit" : "^1.43.0" ,
2024-04-10 16:28:48 +00:00
"fast-deep-equal" : "^3.1.3" ,
2025-10-27 02:25:50 +00:00
"fflate" : "^0.8.2" ,
2025-11-30 11:39:26 +00:00
"file-type" : "^21.1.1" ,
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-12-11 09:14:25 +00:00
"i18next" : "^25.7.2" ,
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-11-03 04:56:15 +00:00
"immer" : "^10.2.0" ,
2025-11-30 11:39:26 +00:00
"ioredis" : "^5.8.2" ,
2025-12-20 12:23:40 +00:00
"jose" : "^6.1.3" ,
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-12-11 09:14:25 +00:00
"klavis" : "^2.15.0" ,
2025-11-03 04:56:15 +00:00
"langchain" : "^0.3.36" ,
"langfuse" : "^3.38.6" ,
"langfuse-core" : "^3.38.6" ,
2025-11-16 06:48:08 +00:00
"lucide-react" : "^0.553.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-11-12 02:35:01 +00:00
"marked" : "^16.4.2" ,
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-12-20 12:23:40 +00:00
"motion" : "^12.23.26" ,
2025-10-11 07:08:26 +00:00
"nanoid" : "^5.1.6" ,
2025-12-12 04:23:10 +00:00
"next" : "^16.0.10" ,
2025-10-30 04:02:12 +00:00
"next-auth" : "5.0.0-beta.30" ,
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" ,
2025-11-30 11:39:26 +00:00
"nodemailer" : "^7.0.11" ,
2024-04-10 16:28:48 +00:00
"numeral" : "^2.0.6" ,
2025-12-11 09:14:25 +00:00
"nuqs" : "^2.8.5" ,
2025-07-07 06:22:20 +00:00
"officeparser" : "5.1.1" ,
2025-12-20 12:23:40 +00:00
"ogl" : "^1.0.11" ,
2025-12-11 09:14:25 +00:00
"oidc-provider" : "^9.6.0" ,
2025-11-16 03:34:45 +00:00
"ollama" : "^0.6.3" ,
2025-06-02 16:22:14 +00:00
"openai" : "^4.104.0" ,
2025-11-03 04:56:15 +00:00
"openapi-fetch" : "^0.14.1" ,
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" ,
2025-12-20 12:23:40 +00:00
"pathe" : "^2.0.3" ,
2025-11-03 04:56:15 +00:00
"pdf-parse" : "^1.1.4" ,
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-11-04 02:37:43 +00:00
"pino" : "^10.1.0" ,
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-11-20 11:59:03 +00:00
"rc-util" : "^5.44.4" ,
2025-12-12 04:23:10 +00:00
"react" : "^19.2.3" ,
2025-04-03 02:52:47 +00:00
"react-confetti" : "^6.4.0" ,
2025-11-17 18:07:58 +00:00
"react-diff-view" : "^3.3.2" ,
2025-12-12 04:23:10 +00:00
"react-dom" : "^19.2.3" ,
2024-07-13 06:39:11 +00:00
"react-fast-marquee" : "^1.6.5" ,
2025-11-03 04:56:15 +00:00
"react-hotkeys-hook" : "^5.2.1" ,
2025-10-11 07:08:26 +00:00
"react-i18next" : "^15.7.4" ,
2025-11-16 11:46:41 +00:00
"react-layout-kit" : "^2.0.1" ,
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-12-11 09:14:25 +00:00
"react-router-dom" : "^7.10.1" ,
2025-09-12 08:04:05 +00:00
"react-scan" : "^0.4.3" ,
2025-12-11 09:14:25 +00:00
"react-virtuoso" : "^4.17.0" ,
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-12-11 09:14:25 +00:00
"resend" : "^6.6.0" ,
2025-11-30 11:39:26 +00:00
"resolve-accept-language" : "^3.1.15" ,
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" ,
2025-11-12 02:35:01 +00:00
"sharp" : "^0.34.5" ,
2025-12-20 12:23:40 +00:00
"shiki" : "^3.20.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-11-30 11:39:26 +00:00
"superjson" : "^2.2.6" ,
2025-12-11 09:14:25 +00:00
"svix" : "^1.82.0" ,
2025-11-30 11:39:26 +00:00
"swr" : "^2.3.7" ,
2024-04-30 10:05:34 +00:00
"systemjs" : "^6.15.1" ,
2025-12-20 12:23:40 +00:00
"three" : "^0.181.2" ,
2025-11-12 02:35:01 +00:00
"tokenx" : "^1.2.1" ,
2025-10-11 07:08:26 +00:00
"ts-md5" : "^2.0.1" ,
2025-09-12 08:04:05 +00:00
"ua-parser-js" : "^1.0.41" ,
2025-12-20 12:23:40 +00:00
"unist-builder" : "^4.0.0" ,
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-11-23 07:40:37 +00:00
"uuid" : "^13.0.0" ,
2025-12-11 09:14:25 +00:00
"virtua" : "^0.47.2" ,
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-12-20 12:23:40 +00:00
"xast-util-to-xml" : "^4.0.0" ,
"xastscript" : "^4.0.0" ,
2025-11-30 11:39:26 +00:00
"yaml" : "^2.8.2" ,
2025-07-23 07:33:20 +00:00
"zod" : "^3.25.76" ,
2025-12-20 12:23:40 +00:00
"zod-to-json-schema" : "^3.25.0" ,
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-12-20 12:23:40 +00:00
"@ast-grep/napi" : "^0.40.0" ,
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-12-11 09:14:25 +00:00
"@huggingface/tasks" : "^0.19.69" ,
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-11-30 11:39:26 +00:00
"@lobehub/lint" : "^1.26.3" ,
2025-12-11 09:14:25 +00:00
"@lobehub/market-types" : "^1.11.5" ,
2025-07-23 07:33:20 +00:00
"@lobehub/seo-cli" : "^1.7.0" ,
2025-12-20 12:23:40 +00:00
"@next/bundle-analyzer" : "^16.0.10" ,
"@next/eslint-plugin-next" : "^15.5.9" ,
2024-06-20 19:22:35 +00:00
"@peculiar/webcrypto" : "^1.5.0" ,
2025-11-30 11:39:26 +00:00
"@playwright/test" : "^1.57.0" ,
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-12-03 11:14:40 +00:00
"@types/async-retry" : "^1.4.9" ,
2025-11-03 04:56:15 +00:00
"@types/chroma-js" : "^3.1.2" ,
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-12-11 09:14:25 +00:00
"@types/node" : "^24.10.3" ,
2025-11-30 11:39:26 +00:00
"@types/nodemailer" : "^7.0.4" ,
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-11-30 11:32:37 +00:00
"@types/pdfkit" : "^0.17.4" ,
2025-12-11 09:14:25 +00:00
"@types/pg" : "^8.16.0" ,
2025-11-01 16:53:13 +00:00
"@types/react" : "19.2.2" ,
"@types/react-dom" : "19.2.2" ,
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-11-30 11:39:26 +00:00
"@types/systemjs" : "^6.15.4" ,
2025-12-20 12:23:40 +00:00
"@types/three" : "^0.181.0" ,
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-12-20 12:23:40 +00:00
"@types/xast" : "^2.0.4" ,
2025-12-11 09:14:25 +00:00
"@typescript/native-preview" : "7.0.0-dev.20251210.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-12-05 06:35:11 +00:00
"code-inspector-plugin" : "1.3.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-12-11 09:14:25 +00:00
"drizzle-kit" : "^0.31.8" ,
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-11-12 02:35:01 +00:00
"fake-indexeddb" : "^6.2.5" ,
2025-10-11 07:08:26 +00:00
"fs-extra" : "^11.3.2" ,
2025-11-30 11:39:26 +00:00
"glob" : "^11.1.0" ,
"happy-dom" : "^20.0.11" ,
2025-01-07 08:51:51 +00:00
"husky" : "^9.1.7" ,
2025-11-05 11:14:15 +00:00
"import-in-the-middle" : "^2.0.0" ,
2024-04-10 16:28:48 +00:00
"just-diff" : "^6.0.2" ,
2025-12-20 12:23:40 +00:00
"knip" : "^5.73.4" ,
2025-11-30 11:39:26 +00:00
"lint-staged" : "^16.2.7" ,
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-11-03 04:56:15 +00:00
"node-gyp" : "^11.5.0" ,
"openapi-typescript" : "^7.10.1" ,
2025-11-12 02:35:01 +00:00
"p-map" : "^7.0.4" ,
2025-12-11 09:14:25 +00:00
"prettier" : "^3.7.4" ,
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-11-05 11:14:15 +00:00
"require-in-the-middle" : "^8.0.1" ,
2024-04-10 16:28:48 +00:00
"semantic-release" : "^21.1.2" ,
2025-11-30 11:39:26 +00:00
"serwist" : "^9.2.3" ,
2024-04-10 16:28:48 +00:00
"stylelint" : "^15.11.0" ,
2025-12-11 09:14:25 +00:00
"tsx" : "^4.21.0" ,
"type-fest" : "^5.3.1" ,
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-12-11 09:14:25 +00:00
"vite" : "^7.2.7" ,
2025-08-22 06:05:01 +00:00
"vitest" : "^3.2.4"
2023-07-15 11:22:16 +00:00
} ,
2025-11-03 04:56:15 +00:00
"packageManager" : "pnpm@10.20.0" ,
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-11-23 11:24:40 +00:00
] ,
"overrides" : {
2025-12-20 12:23:40 +00:00
"jose" : "^6.1.3" ,
2025-11-23 11:24:40 +00:00
"stylelint-config-clean-order" : "7.0.0"
2025-12-20 12:23:40 +00:00
} ,
"patchedDependencies" : {
"@swagger-api/apidom-reference" : "patches/@swagger-api__apidom-reference.patch"
2025-11-23 11:24:40 +00:00
}
2023-07-27 02:53:42 +00:00
}
2025-11-17 16:11:54 +00:00
}