@nocobase/plugin-ai 2.0.5 → 2.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/client/{1907d8fc160052b4.js → 05bb46e182de283c.js} +1 -1
  2. package/dist/client/{888db19c1c5dd1c9.js → 35156dfea5f288fa.js} +1 -1
  3. package/dist/client/9d99ede69dc880d7.js +10 -0
  4. package/dist/client/ai-employees/chatbox/model.d.ts +3 -4
  5. package/dist/client/c49179ef6fcbc972.js +10 -0
  6. package/dist/client/index.d.ts +2 -2
  7. package/dist/client/index.js +3 -3
  8. package/dist/client/llm-services/hooks/useLLMServiceCatalog.d.ts +2 -2
  9. package/dist/client/llm-services/utils.d.ts +1 -1
  10. package/dist/client/repositories/AIConfigRepository.d.ts +52 -0
  11. package/dist/client/{ai-employees/flow/context/index.d.ts → repositories/hooks/useAIConfigRepository.d.ts} +2 -1
  12. package/dist/externalVersion.js +14 -13
  13. package/dist/node_modules/@langchain/anthropic/package.json +1 -1
  14. package/dist/node_modules/@langchain/core/package.json +1 -1
  15. package/dist/node_modules/@langchain/deepseek/package.json +1 -1
  16. package/dist/node_modules/@langchain/google-genai/package.json +1 -1
  17. package/dist/node_modules/@langchain/langgraph/package.json +1 -1
  18. package/dist/node_modules/@langchain/langgraph-checkpoint/package.json +1 -1
  19. package/dist/node_modules/@langchain/ollama/package.json +1 -1
  20. package/dist/node_modules/@langchain/openai/package.json +1 -1
  21. package/dist/node_modules/fast-glob/package.json +1 -1
  22. package/dist/node_modules/flexsearch/package.json +1 -1
  23. package/dist/node_modules/fs-extra/package.json +1 -1
  24. package/dist/node_modules/langchain/package.json +1 -1
  25. package/dist/node_modules/nodejs-snowflake/package.json +1 -1
  26. package/dist/node_modules/zod/package.json +1 -1
  27. package/dist/server/collections/lc-checkpoint-blobs.js +2 -1
  28. package/dist/server/collections/lc-checkpoint-writes.js +1 -0
  29. package/dist/server/manager/ai-context-datasource-manager.js +4 -3
  30. package/dist/{client/llm-services/hooks/useLLMServicesRepository.d.ts → server/migrations/20260225220347-alter-checkpoint-blob-field.d.ts} +7 -2
  31. package/dist/server/migrations/20260225220347-alter-checkpoint-blob-field.js +63 -0
  32. package/dist/server/plugin.js +1 -5
  33. package/dist/server/tools/docs.d.ts +3 -4
  34. package/dist/server/tools/docs.js +104 -43
  35. package/package.json +3 -2
  36. package/dist/client/66c939b3395bb7c4.js +0 -10
  37. package/dist/client/ai-employees/flow/context/ai-employees-data.d.ts +0 -10
  38. package/dist/client/ai-employees/hooks/useAIEmployeesData.d.ts +0 -17
  39. package/dist/client/f52e5acb1a4b991c.js +0 -10
  40. package/dist/client/llm-services/LLMServicesRepository.d.ts +0 -30
@@ -7,8 +7,8 @@
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
9
  export declare const useLLMServiceCatalog: () => {
10
- repo: import("../LLMServicesRepository").LLMServicesRepository;
11
- services: import("../LLMServicesRepository").LLMServiceItem[];
10
+ repo: import("../../repositories/AIConfigRepository").AIConfigRepository;
11
+ services: import("../../repositories/AIConfigRepository").LLMServiceItem[];
12
12
  loading: boolean;
13
13
  allModelsWithLabel: import("../utils").ModelWithLabel[];
14
14
  allModels: {
@@ -6,7 +6,7 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
- import { LLMServiceItem } from './LLMServicesRepository';
9
+ import { LLMServiceItem } from '../repositories/AIConfigRepository';
10
10
  export type ModelWithLabel = {
11
11
  llmService: string;
12
12
  model: string;
@@ -0,0 +1,52 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { ToolsEntry, type ToolsManager } from '@nocobase/client';
10
+ import { AIEmployee } from '../ai-employees/types';
11
+ export interface LLMServiceItem {
12
+ llmService: string;
13
+ llmServiceTitle: string;
14
+ provider?: string;
15
+ providerTitle?: string;
16
+ enabledModels: {
17
+ label: string;
18
+ value: string;
19
+ }[];
20
+ supportWebSearch?: boolean;
21
+ isToolConflict?: boolean;
22
+ }
23
+ export declare class AIConfigRepository {
24
+ private readonly apiClient;
25
+ private readonly options?;
26
+ llmServices: LLMServiceItem[];
27
+ llmServicesLoading: boolean;
28
+ aiEmployees: AIEmployee[];
29
+ aiEmployeesLoading: boolean;
30
+ aiTools: ToolsEntry[];
31
+ aiToolsLoading: boolean;
32
+ private llmServicesLoaded;
33
+ private aiEmployeesLoaded;
34
+ private aiToolsLoaded;
35
+ private llmServicesInFlight;
36
+ private aiEmployeesInFlight;
37
+ private aiToolsInFlight;
38
+ constructor(apiClient: any, options?: {
39
+ toolsManager?: Pick<ToolsManager, 'listTools'>;
40
+ });
41
+ getLLMServices(): Promise<LLMServiceItem[]>;
42
+ refreshLLMServices(): Promise<LLMServiceItem[]>;
43
+ getAIEmployees(): Promise<AIEmployee[]>;
44
+ refreshAIEmployees(): Promise<AIEmployee[]>;
45
+ getAIEmployeesMap(): Record<string, AIEmployee>;
46
+ getAITools(): Promise<ToolsEntry[]>;
47
+ refreshAITools(): Promise<ToolsEntry[]>;
48
+ private startRefresh;
49
+ private doRefreshLLMServices;
50
+ private doRefreshAIEmployees;
51
+ private doRefreshAITools;
52
+ }
@@ -6,4 +6,5 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
- export * from './ai-employees-data';
9
+ import { AIConfigRepository } from '../AIConfigRepository';
10
+ export declare const useAIConfigRepository: () => AIConfigRepository;
@@ -8,31 +8,32 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/plugin-acl": "2.0.5",
12
- "@nocobase/plugin-workflow": "2.0.5",
13
- "@nocobase/client": "2.0.5",
14
- "@nocobase/utils": "2.0.5",
15
- "@nocobase/database": "2.0.5",
16
- "@nocobase/server": "2.0.5",
11
+ "@nocobase/plugin-acl": "2.0.7",
12
+ "@nocobase/plugin-workflow": "2.0.7",
13
+ "@nocobase/client": "2.0.7",
14
+ "@nocobase/utils": "2.0.7",
15
+ "@nocobase/database": "2.0.7",
16
+ "@nocobase/server": "2.0.7",
17
17
  "axios": "1.7.7",
18
- "@nocobase/actions": "2.0.5",
19
- "@nocobase/ai": "2.0.5",
18
+ "@nocobase/actions": "2.0.7",
19
+ "@nocobase/ai": "2.0.7",
20
20
  "react": "18.2.0",
21
21
  "antd": "5.24.2",
22
22
  "@formily/core": "2.3.7",
23
23
  "@formily/react": "2.3.7",
24
- "@nocobase/flow-engine": "2.0.5",
24
+ "@nocobase/flow-engine": "2.0.7",
25
25
  "@ant-design/icons": "5.6.1",
26
26
  "@formily/antd-v5": "1.2.3",
27
27
  "react-router-dom": "6.30.1",
28
28
  "@formily/shared": "2.3.7",
29
29
  "@formily/reactive": "2.3.7",
30
30
  "lodash": "4.17.21",
31
- "@nocobase/plugin-file-manager": "2.0.5",
32
- "@nocobase/resourcer": "2.0.5",
31
+ "@nocobase/plugin-file-manager": "2.0.7",
32
+ "@nocobase/acl": "2.0.7",
33
+ "@nocobase/resourcer": "2.0.7",
33
34
  "@emotion/css": "11.13.0",
34
35
  "react-i18next": "11.18.6",
35
- "@nocobase/plugin-data-source-manager": "2.0.5",
36
+ "@nocobase/plugin-data-source-manager": "2.0.7",
36
37
  "ahooks": "3.7.8",
37
- "@nocobase/data-source-manager": "2.0.5"
38
+ "@nocobase/data-source-manager": "2.0.7"
38
39
  };
@@ -1 +1 @@
1
- {"name":"@langchain/anthropic","version":"1.3.17","description":"Anthropic integrations for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-anthropic/","dependencies":{"@anthropic-ai/sdk":"^0.73.0","zod":"^3.25.76 || ^4"},"peerDependencies":{"@langchain/core":"^1.1.21"},"devDependencies":{"@anthropic-ai/vertex-sdk":"^0.14.3","@cfworker/json-schema":"^4.1.1","@tsconfig/recommended":"^1.0.10","@vitest/coverage-v8":"^3.2.4","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","uuid":"^13.0.0","vitest":"^3.2.4","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","anthropic","embeddings","vectorstores"],"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"scripts":{"build":"turbo build:compile --filter @langchain/anthropic --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-25T16:52:37.322Z"}
1
+ {"name":"@langchain/anthropic","version":"1.3.17","description":"Anthropic integrations for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-anthropic/","dependencies":{"@anthropic-ai/sdk":"^0.73.0","zod":"^3.25.76 || ^4"},"peerDependencies":{"@langchain/core":"^1.1.21"},"devDependencies":{"@anthropic-ai/vertex-sdk":"^0.14.3","@cfworker/json-schema":"^4.1.1","@tsconfig/recommended":"^1.0.10","@vitest/coverage-v8":"^3.2.4","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","uuid":"^13.0.0","vitest":"^3.2.4","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","anthropic","embeddings","vectorstores"],"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"scripts":{"build":"turbo build:compile --filter @langchain/anthropic --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-27T08:23:35.636Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/core","version":"1.1.24","description":"Core LangChain.js abstractions and schemas","type":"module","engines":{"node":">=20"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/langchain-core/","author":"LangChain","license":"MIT","dependencies":{"@cfworker/json-schema":"^4.0.2","ansi-styles":"^5.0.0","camelcase":"6","decamelize":"1.2.0","js-tiktoken":"^1.0.12","langsmith":">=0.5.0 <1.0.0","mustache":"^4.2.0","p-queue":"^6.6.2","uuid":"^10.0.0","zod":"^3.25.76 || ^4"},"devDependencies":{"@types/decamelize":"^1.2.0","@types/mustache":"^4","@types/uuid":"^10.0.0","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","ml-matrix":"^6.10.4","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","vitest":"^3.2.4","web-streams-polyfill":"^4.2.0","@langchain/eslint":"0.1.1","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","openai","embeddings","vectorstores"],"exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./agents":{"input":"./src/agents.ts","require":{"types":"./dist/agents.d.cts","default":"./dist/agents.cjs"},"import":{"types":"./dist/agents.d.ts","default":"./dist/agents.js"}},"./caches":{"input":"./src/caches/index.ts","require":{"types":"./dist/caches/index.d.cts","default":"./dist/caches/index.cjs"},"import":{"types":"./dist/caches/index.d.ts","default":"./dist/caches/index.js"}},"./callbacks/base":{"input":"./src/callbacks/base.ts","require":{"types":"./dist/callbacks/base.d.cts","default":"./dist/callbacks/base.cjs"},"import":{"types":"./dist/callbacks/base.d.ts","default":"./dist/callbacks/base.js"}},"./callbacks/dispatch":{"input":"./src/callbacks/dispatch/index.ts","require":{"types":"./dist/callbacks/dispatch/index.d.cts","default":"./dist/callbacks/dispatch/index.cjs"},"import":{"types":"./dist/callbacks/dispatch/index.d.ts","default":"./dist/callbacks/dispatch/index.js"}},"./callbacks/dispatch/web":{"input":"./src/callbacks/dispatch/web.ts","require":{"types":"./dist/callbacks/dispatch/web.d.cts","default":"./dist/callbacks/dispatch/web.cjs"},"import":{"types":"./dist/callbacks/dispatch/web.d.ts","default":"./dist/callbacks/dispatch/web.js"}},"./callbacks/manager":{"input":"./src/callbacks/manager.ts","require":{"types":"./dist/callbacks/manager.d.cts","default":"./dist/callbacks/manager.cjs"},"import":{"types":"./dist/callbacks/manager.d.ts","default":"./dist/callbacks/manager.js"}},"./callbacks/promises":{"input":"./src/callbacks/promises.ts","require":{"types":"./dist/callbacks/promises.d.cts","default":"./dist/callbacks/promises.cjs"},"import":{"types":"./dist/callbacks/promises.d.ts","default":"./dist/callbacks/promises.js"}},"./chat_history":{"input":"./src/chat_history.ts","require":{"types":"./dist/chat_history.d.cts","default":"./dist/chat_history.cjs"},"import":{"types":"./dist/chat_history.d.ts","default":"./dist/chat_history.js"}},"./context":{"input":"./src/context.ts","require":{"types":"./dist/context.d.cts","default":"./dist/context.cjs"},"import":{"types":"./dist/context.d.ts","default":"./dist/context.js"}},"./document_loaders/base":{"input":"./src/document_loaders/base.ts","require":{"types":"./dist/document_loaders/base.d.cts","default":"./dist/document_loaders/base.cjs"},"import":{"types":"./dist/document_loaders/base.d.ts","default":"./dist/document_loaders/base.js"}},"./document_loaders/langsmith":{"input":"./src/document_loaders/langsmith.ts","require":{"types":"./dist/document_loaders/langsmith.d.cts","default":"./dist/document_loaders/langsmith.cjs"},"import":{"types":"./dist/document_loaders/langsmith.d.ts","default":"./dist/document_loaders/langsmith.js"}},"./documents":{"input":"./src/documents/index.ts","require":{"types":"./dist/documents/index.d.cts","default":"./dist/documents/index.cjs"},"import":{"types":"./dist/documents/index.d.ts","default":"./dist/documents/index.js"}},"./embeddings":{"input":"./src/embeddings.ts","require":{"types":"./dist/embeddings.d.cts","default":"./dist/embeddings.cjs"},"import":{"types":"./dist/embeddings.d.ts","default":"./dist/embeddings.js"}},"./errors":{"input":"./src/errors/index.ts","require":{"types":"./dist/errors/index.d.cts","default":"./dist/errors/index.cjs"},"import":{"types":"./dist/errors/index.d.ts","default":"./dist/errors/index.js"}},"./example_selectors":{"input":"./src/example_selectors/index.ts","require":{"types":"./dist/example_selectors/index.d.cts","default":"./dist/example_selectors/index.cjs"},"import":{"types":"./dist/example_selectors/index.d.ts","default":"./dist/example_selectors/index.js"}},"./indexing":{"input":"./src/indexing/index.ts","require":{"types":"./dist/indexing/index.d.cts","default":"./dist/indexing/index.cjs"},"import":{"types":"./dist/indexing/index.d.ts","default":"./dist/indexing/index.js"}},"./language_models/base":{"input":"./src/language_models/base.ts","require":{"types":"./dist/language_models/base.d.cts","default":"./dist/language_models/base.cjs"},"import":{"types":"./dist/language_models/base.d.ts","default":"./dist/language_models/base.js"}},"./language_models/chat_models":{"input":"./src/language_models/chat_models.ts","require":{"types":"./dist/language_models/chat_models.d.cts","default":"./dist/language_models/chat_models.cjs"},"import":{"types":"./dist/language_models/chat_models.d.ts","default":"./dist/language_models/chat_models.js"}},"./language_models/llms":{"input":"./src/language_models/llms.ts","require":{"types":"./dist/language_models/llms.d.cts","default":"./dist/language_models/llms.cjs"},"import":{"types":"./dist/language_models/llms.d.ts","default":"./dist/language_models/llms.js"}},"./language_models/profile":{"input":"./src/language_models/profile.ts","require":{"types":"./dist/language_models/profile.d.cts","default":"./dist/language_models/profile.cjs"},"import":{"types":"./dist/language_models/profile.d.ts","default":"./dist/language_models/profile.js"}},"./load":{"input":"./src/load/index.ts","require":{"types":"./dist/load/index.d.cts","default":"./dist/load/index.cjs"},"import":{"types":"./dist/load/index.d.ts","default":"./dist/load/index.js"}},"./load/serializable":{"input":"./src/load/serializable.ts","require":{"types":"./dist/load/serializable.d.cts","default":"./dist/load/serializable.cjs"},"import":{"types":"./dist/load/serializable.d.ts","default":"./dist/load/serializable.js"}},"./memory":{"input":"./src/memory.ts","require":{"types":"./dist/memory.d.cts","default":"./dist/memory.cjs"},"import":{"types":"./dist/memory.d.ts","default":"./dist/memory.js"}},"./messages":{"input":"./src/messages/index.ts","require":{"types":"./dist/messages/index.d.cts","default":"./dist/messages/index.cjs"},"import":{"types":"./dist/messages/index.d.ts","default":"./dist/messages/index.js"}},"./messages/tool":{"input":"./src/messages/tool.ts","require":{"types":"./dist/messages/tool.d.cts","default":"./dist/messages/tool.cjs"},"import":{"types":"./dist/messages/tool.d.ts","default":"./dist/messages/tool.js"}},"./output_parsers":{"input":"./src/output_parsers/index.ts","require":{"types":"./dist/output_parsers/index.d.cts","default":"./dist/output_parsers/index.cjs"},"import":{"types":"./dist/output_parsers/index.d.ts","default":"./dist/output_parsers/index.js"}},"./output_parsers/openai_functions":{"input":"./src/output_parsers/openai_functions/index.ts","require":{"types":"./dist/output_parsers/openai_functions/index.d.cts","default":"./dist/output_parsers/openai_functions/index.cjs"},"import":{"types":"./dist/output_parsers/openai_functions/index.d.ts","default":"./dist/output_parsers/openai_functions/index.js"}},"./output_parsers/openai_tools":{"input":"./src/output_parsers/openai_tools/index.ts","require":{"types":"./dist/output_parsers/openai_tools/index.d.cts","default":"./dist/output_parsers/openai_tools/index.cjs"},"import":{"types":"./dist/output_parsers/openai_tools/index.d.ts","default":"./dist/output_parsers/openai_tools/index.js"}},"./outputs":{"input":"./src/outputs.ts","require":{"types":"./dist/outputs.d.cts","default":"./dist/outputs.cjs"},"import":{"types":"./dist/outputs.d.ts","default":"./dist/outputs.js"}},"./prompt_values":{"input":"./src/prompt_values.ts","require":{"types":"./dist/prompt_values.d.cts","default":"./dist/prompt_values.cjs"},"import":{"types":"./dist/prompt_values.d.ts","default":"./dist/prompt_values.js"}},"./prompts":{"input":"./src/prompts/index.ts","require":{"types":"./dist/prompts/index.d.cts","default":"./dist/prompts/index.cjs"},"import":{"types":"./dist/prompts/index.d.ts","default":"./dist/prompts/index.js"}},"./retrievers":{"input":"./src/retrievers/index.ts","require":{"types":"./dist/retrievers/index.d.cts","default":"./dist/retrievers/index.cjs"},"import":{"types":"./dist/retrievers/index.d.ts","default":"./dist/retrievers/index.js"}},"./retrievers/document_compressors":{"input":"./src/retrievers/document_compressors/index.ts","require":{"types":"./dist/retrievers/document_compressors/index.d.cts","default":"./dist/retrievers/document_compressors/index.cjs"},"import":{"types":"./dist/retrievers/document_compressors/index.d.ts","default":"./dist/retrievers/document_compressors/index.js"}},"./runnables":{"input":"./src/runnables/index.ts","require":{"types":"./dist/runnables/index.d.cts","default":"./dist/runnables/index.cjs"},"import":{"types":"./dist/runnables/index.d.ts","default":"./dist/runnables/index.js"}},"./runnables/graph":{"input":"./src/runnables/graph.ts","require":{"types":"./dist/runnables/graph.d.cts","default":"./dist/runnables/graph.cjs"},"import":{"types":"./dist/runnables/graph.d.ts","default":"./dist/runnables/graph.js"}},"./singletons":{"input":"./src/singletons/index.ts","require":{"types":"./dist/singletons/index.d.cts","default":"./dist/singletons/index.cjs"},"import":{"types":"./dist/singletons/index.d.ts","default":"./dist/singletons/index.js"}},"./stores":{"input":"./src/stores.ts","require":{"types":"./dist/stores.d.cts","default":"./dist/stores.cjs"},"import":{"types":"./dist/stores.d.ts","default":"./dist/stores.js"}},"./structured_query":{"input":"./src/structured_query/index.ts","require":{"types":"./dist/structured_query/index.d.cts","default":"./dist/structured_query/index.cjs"},"import":{"types":"./dist/structured_query/index.d.ts","default":"./dist/structured_query/index.js"}},"./tools":{"input":"./src/tools/index.ts","require":{"types":"./dist/tools/index.d.cts","default":"./dist/tools/index.cjs"},"import":{"types":"./dist/tools/index.d.ts","default":"./dist/tools/index.js"}},"./tracers/base":{"input":"./src/tracers/base.ts","require":{"types":"./dist/tracers/base.d.cts","default":"./dist/tracers/base.cjs"},"import":{"types":"./dist/tracers/base.d.ts","default":"./dist/tracers/base.js"}},"./tracers/console":{"input":"./src/tracers/console.ts","require":{"types":"./dist/tracers/console.d.cts","default":"./dist/tracers/console.cjs"},"import":{"types":"./dist/tracers/console.d.ts","default":"./dist/tracers/console.js"}},"./tracers/log_stream":{"input":"./src/tracers/log_stream.ts","require":{"types":"./dist/tracers/log_stream.d.cts","default":"./dist/tracers/log_stream.cjs"},"import":{"types":"./dist/tracers/log_stream.d.ts","default":"./dist/tracers/log_stream.js"}},"./tracers/run_collector":{"input":"./src/tracers/run_collector.ts","require":{"types":"./dist/tracers/run_collector.d.cts","default":"./dist/tracers/run_collector.cjs"},"import":{"types":"./dist/tracers/run_collector.d.ts","default":"./dist/tracers/run_collector.js"}},"./tracers/tracer_langchain":{"input":"./src/tracers/tracer_langchain.ts","require":{"types":"./dist/tracers/tracer_langchain.d.cts","default":"./dist/tracers/tracer_langchain.cjs"},"import":{"types":"./dist/tracers/tracer_langchain.d.ts","default":"./dist/tracers/tracer_langchain.js"}},"./types/stream":{"input":"./src/types/stream.ts","require":{"types":"./dist/types/stream.d.cts","default":"./dist/types/stream.cjs"},"import":{"types":"./dist/types/stream.d.ts","default":"./dist/types/stream.js"}},"./utils/async_caller":{"input":"./src/utils/async_caller.ts","require":{"types":"./dist/utils/async_caller.d.cts","default":"./dist/utils/async_caller.cjs"},"import":{"types":"./dist/utils/async_caller.d.ts","default":"./dist/utils/async_caller.js"}},"./utils/chunk_array":{"input":"./src/utils/chunk_array.ts","require":{"types":"./dist/utils/chunk_array.d.cts","default":"./dist/utils/chunk_array.cjs"},"import":{"types":"./dist/utils/chunk_array.d.ts","default":"./dist/utils/chunk_array.js"}},"./utils/context":{"input":"./src/utils/context.ts","require":{"types":"./dist/utils/context.d.cts","default":"./dist/utils/context.cjs"},"import":{"types":"./dist/utils/context.d.ts","default":"./dist/utils/context.js"}},"./utils/env":{"input":"./src/utils/env.ts","require":{"types":"./dist/utils/env.d.cts","default":"./dist/utils/env.cjs"},"import":{"types":"./dist/utils/env.d.ts","default":"./dist/utils/env.js"}},"./utils/event_source_parse":{"input":"./src/utils/event_source_parse.ts","require":{"types":"./dist/utils/event_source_parse.d.cts","default":"./dist/utils/event_source_parse.cjs"},"import":{"types":"./dist/utils/event_source_parse.d.ts","default":"./dist/utils/event_source_parse.js"}},"./utils/format":{"input":"./src/utils/format.ts","require":{"types":"./dist/utils/format.d.cts","default":"./dist/utils/format.cjs"},"import":{"types":"./dist/utils/format.d.ts","default":"./dist/utils/format.js"}},"./utils/function_calling":{"input":"./src/utils/function_calling.ts","require":{"types":"./dist/utils/function_calling.d.cts","default":"./dist/utils/function_calling.cjs"},"import":{"types":"./dist/utils/function_calling.d.ts","default":"./dist/utils/function_calling.js"}},"./utils/hash":{"input":"./src/utils/hash.ts","require":{"types":"./dist/utils/hash.d.cts","default":"./dist/utils/hash.cjs"},"import":{"types":"./dist/utils/hash.d.ts","default":"./dist/utils/hash.js"}},"./utils/json_patch":{"input":"./src/utils/json_patch.ts","require":{"types":"./dist/utils/json_patch.d.cts","default":"./dist/utils/json_patch.cjs"},"import":{"types":"./dist/utils/json_patch.d.ts","default":"./dist/utils/json_patch.js"}},"./utils/json_schema":{"input":"./src/utils/json_schema.ts","require":{"types":"./dist/utils/json_schema.d.cts","default":"./dist/utils/json_schema.cjs"},"import":{"types":"./dist/utils/json_schema.d.ts","default":"./dist/utils/json_schema.js"}},"./utils/math":{"input":"./src/utils/math.ts","require":{"types":"./dist/utils/math.d.cts","default":"./dist/utils/math.cjs"},"import":{"types":"./dist/utils/math.d.ts","default":"./dist/utils/math.js"}},"./utils/ssrf":{"input":"./src/utils/ssrf.ts","require":{"types":"./dist/utils/ssrf.d.cts","default":"./dist/utils/ssrf.cjs"},"import":{"types":"./dist/utils/ssrf.d.ts","default":"./dist/utils/ssrf.js"}},"./utils/stream":{"input":"./src/utils/stream.ts","require":{"types":"./dist/utils/stream.d.cts","default":"./dist/utils/stream.cjs"},"import":{"types":"./dist/utils/stream.d.ts","default":"./dist/utils/stream.js"}},"./utils/testing":{"input":"./src/utils/testing/index.ts","require":{"types":"./dist/utils/testing/index.d.cts","default":"./dist/utils/testing/index.cjs"},"import":{"types":"./dist/utils/testing/index.d.ts","default":"./dist/utils/testing/index.js"}},"./utils/tiktoken":{"input":"./src/utils/tiktoken.ts","require":{"types":"./dist/utils/tiktoken.d.cts","default":"./dist/utils/tiktoken.cjs"},"import":{"types":"./dist/utils/tiktoken.d.ts","default":"./dist/utils/tiktoken.js"}},"./utils/types":{"input":"./src/utils/types/index.ts","require":{"types":"./dist/utils/types/index.d.cts","default":"./dist/utils/types/index.cjs"},"import":{"types":"./dist/utils/types/index.d.ts","default":"./dist/utils/types/index.js"}},"./vectorstores":{"input":"./src/vectorstores.ts","require":{"types":"./dist/vectorstores.d.cts","default":"./dist/vectorstores.cjs"},"import":{"types":"./dist/vectorstores.d.ts","default":"./dist/vectorstores.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE","retrievers","load","load.d.cts","load.cjs","load.d.ts","load.js","prompts.d.cts","prompts.cjs","prompts.d.ts","prompts.js","utils","output_parsers","types","language_models","embeddings.d.cts","embeddings.cjs","embeddings.d.ts","embeddings.js","callbacks","tracers","example_selectors.d.cts","example_selectors.cjs","example_selectors.d.ts","example_selectors.js","context.d.cts","context.cjs","context.d.ts","context.js","chat_history.d.cts","chat_history.cjs","chat_history.d.ts","chat_history.js","structured_query.d.cts","structured_query.cjs","structured_query.d.ts","structured_query.js","stores.d.cts","stores.cjs","stores.d.ts","stores.js","singletons.d.cts","singletons.cjs","singletons.d.ts","singletons.js","indexing.d.cts","indexing.cjs","indexing.d.ts","indexing.js","documents.d.cts","documents.cjs","documents.d.ts","documents.js","messages.d.cts","messages.cjs","messages.d.ts","messages.js","runnables","output_parsers.d.cts","output_parsers.cjs","output_parsers.d.ts","output_parsers.js","prompt_values.d.cts","prompt_values.cjs","prompt_values.d.ts","prompt_values.js","document_loaders","retrievers.d.cts","retrievers.cjs","retrievers.d.ts","retrievers.js","memory.d.cts","memory.cjs","memory.d.ts","memory.js","runnables.d.cts","runnables.cjs","runnables.d.ts","runnables.js","tools.d.cts","tools.cjs","tools.d.ts","tools.js","vectorstores.d.cts","vectorstores.cjs","vectorstores.d.ts","vectorstores.js","caches.d.cts","caches.cjs","caches.d.ts","caches.js","agents.d.cts","agents.cjs","agents.d.ts","agents.js","messages","outputs.d.cts","outputs.cjs","outputs.d.ts","outputs.js"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/core --output-logs new-only","build:compile":"tsdown","clean":"rm -rf .turbo dist/","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts --exclude \"(node_modules|src/utils/zod-to-json-schema)\" --transform","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","test":"vitest run","test:watch":"vitest watch","test:int":"vitest run --mode int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\""},"_lastModified":"2026-02-25T16:52:24.589Z"}
1
+ {"name":"@langchain/core","version":"1.1.24","description":"Core LangChain.js abstractions and schemas","type":"module","engines":{"node":">=20"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/langchain-core/","author":"LangChain","license":"MIT","dependencies":{"@cfworker/json-schema":"^4.0.2","ansi-styles":"^5.0.0","camelcase":"6","decamelize":"1.2.0","js-tiktoken":"^1.0.12","langsmith":">=0.5.0 <1.0.0","mustache":"^4.2.0","p-queue":"^6.6.2","uuid":"^10.0.0","zod":"^3.25.76 || ^4"},"devDependencies":{"@types/decamelize":"^1.2.0","@types/mustache":"^4","@types/uuid":"^10.0.0","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","ml-matrix":"^6.10.4","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","vitest":"^3.2.4","web-streams-polyfill":"^4.2.0","@langchain/eslint":"0.1.1","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","openai","embeddings","vectorstores"],"exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./agents":{"input":"./src/agents.ts","require":{"types":"./dist/agents.d.cts","default":"./dist/agents.cjs"},"import":{"types":"./dist/agents.d.ts","default":"./dist/agents.js"}},"./caches":{"input":"./src/caches/index.ts","require":{"types":"./dist/caches/index.d.cts","default":"./dist/caches/index.cjs"},"import":{"types":"./dist/caches/index.d.ts","default":"./dist/caches/index.js"}},"./callbacks/base":{"input":"./src/callbacks/base.ts","require":{"types":"./dist/callbacks/base.d.cts","default":"./dist/callbacks/base.cjs"},"import":{"types":"./dist/callbacks/base.d.ts","default":"./dist/callbacks/base.js"}},"./callbacks/dispatch":{"input":"./src/callbacks/dispatch/index.ts","require":{"types":"./dist/callbacks/dispatch/index.d.cts","default":"./dist/callbacks/dispatch/index.cjs"},"import":{"types":"./dist/callbacks/dispatch/index.d.ts","default":"./dist/callbacks/dispatch/index.js"}},"./callbacks/dispatch/web":{"input":"./src/callbacks/dispatch/web.ts","require":{"types":"./dist/callbacks/dispatch/web.d.cts","default":"./dist/callbacks/dispatch/web.cjs"},"import":{"types":"./dist/callbacks/dispatch/web.d.ts","default":"./dist/callbacks/dispatch/web.js"}},"./callbacks/manager":{"input":"./src/callbacks/manager.ts","require":{"types":"./dist/callbacks/manager.d.cts","default":"./dist/callbacks/manager.cjs"},"import":{"types":"./dist/callbacks/manager.d.ts","default":"./dist/callbacks/manager.js"}},"./callbacks/promises":{"input":"./src/callbacks/promises.ts","require":{"types":"./dist/callbacks/promises.d.cts","default":"./dist/callbacks/promises.cjs"},"import":{"types":"./dist/callbacks/promises.d.ts","default":"./dist/callbacks/promises.js"}},"./chat_history":{"input":"./src/chat_history.ts","require":{"types":"./dist/chat_history.d.cts","default":"./dist/chat_history.cjs"},"import":{"types":"./dist/chat_history.d.ts","default":"./dist/chat_history.js"}},"./context":{"input":"./src/context.ts","require":{"types":"./dist/context.d.cts","default":"./dist/context.cjs"},"import":{"types":"./dist/context.d.ts","default":"./dist/context.js"}},"./document_loaders/base":{"input":"./src/document_loaders/base.ts","require":{"types":"./dist/document_loaders/base.d.cts","default":"./dist/document_loaders/base.cjs"},"import":{"types":"./dist/document_loaders/base.d.ts","default":"./dist/document_loaders/base.js"}},"./document_loaders/langsmith":{"input":"./src/document_loaders/langsmith.ts","require":{"types":"./dist/document_loaders/langsmith.d.cts","default":"./dist/document_loaders/langsmith.cjs"},"import":{"types":"./dist/document_loaders/langsmith.d.ts","default":"./dist/document_loaders/langsmith.js"}},"./documents":{"input":"./src/documents/index.ts","require":{"types":"./dist/documents/index.d.cts","default":"./dist/documents/index.cjs"},"import":{"types":"./dist/documents/index.d.ts","default":"./dist/documents/index.js"}},"./embeddings":{"input":"./src/embeddings.ts","require":{"types":"./dist/embeddings.d.cts","default":"./dist/embeddings.cjs"},"import":{"types":"./dist/embeddings.d.ts","default":"./dist/embeddings.js"}},"./errors":{"input":"./src/errors/index.ts","require":{"types":"./dist/errors/index.d.cts","default":"./dist/errors/index.cjs"},"import":{"types":"./dist/errors/index.d.ts","default":"./dist/errors/index.js"}},"./example_selectors":{"input":"./src/example_selectors/index.ts","require":{"types":"./dist/example_selectors/index.d.cts","default":"./dist/example_selectors/index.cjs"},"import":{"types":"./dist/example_selectors/index.d.ts","default":"./dist/example_selectors/index.js"}},"./indexing":{"input":"./src/indexing/index.ts","require":{"types":"./dist/indexing/index.d.cts","default":"./dist/indexing/index.cjs"},"import":{"types":"./dist/indexing/index.d.ts","default":"./dist/indexing/index.js"}},"./language_models/base":{"input":"./src/language_models/base.ts","require":{"types":"./dist/language_models/base.d.cts","default":"./dist/language_models/base.cjs"},"import":{"types":"./dist/language_models/base.d.ts","default":"./dist/language_models/base.js"}},"./language_models/chat_models":{"input":"./src/language_models/chat_models.ts","require":{"types":"./dist/language_models/chat_models.d.cts","default":"./dist/language_models/chat_models.cjs"},"import":{"types":"./dist/language_models/chat_models.d.ts","default":"./dist/language_models/chat_models.js"}},"./language_models/llms":{"input":"./src/language_models/llms.ts","require":{"types":"./dist/language_models/llms.d.cts","default":"./dist/language_models/llms.cjs"},"import":{"types":"./dist/language_models/llms.d.ts","default":"./dist/language_models/llms.js"}},"./language_models/profile":{"input":"./src/language_models/profile.ts","require":{"types":"./dist/language_models/profile.d.cts","default":"./dist/language_models/profile.cjs"},"import":{"types":"./dist/language_models/profile.d.ts","default":"./dist/language_models/profile.js"}},"./load":{"input":"./src/load/index.ts","require":{"types":"./dist/load/index.d.cts","default":"./dist/load/index.cjs"},"import":{"types":"./dist/load/index.d.ts","default":"./dist/load/index.js"}},"./load/serializable":{"input":"./src/load/serializable.ts","require":{"types":"./dist/load/serializable.d.cts","default":"./dist/load/serializable.cjs"},"import":{"types":"./dist/load/serializable.d.ts","default":"./dist/load/serializable.js"}},"./memory":{"input":"./src/memory.ts","require":{"types":"./dist/memory.d.cts","default":"./dist/memory.cjs"},"import":{"types":"./dist/memory.d.ts","default":"./dist/memory.js"}},"./messages":{"input":"./src/messages/index.ts","require":{"types":"./dist/messages/index.d.cts","default":"./dist/messages/index.cjs"},"import":{"types":"./dist/messages/index.d.ts","default":"./dist/messages/index.js"}},"./messages/tool":{"input":"./src/messages/tool.ts","require":{"types":"./dist/messages/tool.d.cts","default":"./dist/messages/tool.cjs"},"import":{"types":"./dist/messages/tool.d.ts","default":"./dist/messages/tool.js"}},"./output_parsers":{"input":"./src/output_parsers/index.ts","require":{"types":"./dist/output_parsers/index.d.cts","default":"./dist/output_parsers/index.cjs"},"import":{"types":"./dist/output_parsers/index.d.ts","default":"./dist/output_parsers/index.js"}},"./output_parsers/openai_functions":{"input":"./src/output_parsers/openai_functions/index.ts","require":{"types":"./dist/output_parsers/openai_functions/index.d.cts","default":"./dist/output_parsers/openai_functions/index.cjs"},"import":{"types":"./dist/output_parsers/openai_functions/index.d.ts","default":"./dist/output_parsers/openai_functions/index.js"}},"./output_parsers/openai_tools":{"input":"./src/output_parsers/openai_tools/index.ts","require":{"types":"./dist/output_parsers/openai_tools/index.d.cts","default":"./dist/output_parsers/openai_tools/index.cjs"},"import":{"types":"./dist/output_parsers/openai_tools/index.d.ts","default":"./dist/output_parsers/openai_tools/index.js"}},"./outputs":{"input":"./src/outputs.ts","require":{"types":"./dist/outputs.d.cts","default":"./dist/outputs.cjs"},"import":{"types":"./dist/outputs.d.ts","default":"./dist/outputs.js"}},"./prompt_values":{"input":"./src/prompt_values.ts","require":{"types":"./dist/prompt_values.d.cts","default":"./dist/prompt_values.cjs"},"import":{"types":"./dist/prompt_values.d.ts","default":"./dist/prompt_values.js"}},"./prompts":{"input":"./src/prompts/index.ts","require":{"types":"./dist/prompts/index.d.cts","default":"./dist/prompts/index.cjs"},"import":{"types":"./dist/prompts/index.d.ts","default":"./dist/prompts/index.js"}},"./retrievers":{"input":"./src/retrievers/index.ts","require":{"types":"./dist/retrievers/index.d.cts","default":"./dist/retrievers/index.cjs"},"import":{"types":"./dist/retrievers/index.d.ts","default":"./dist/retrievers/index.js"}},"./retrievers/document_compressors":{"input":"./src/retrievers/document_compressors/index.ts","require":{"types":"./dist/retrievers/document_compressors/index.d.cts","default":"./dist/retrievers/document_compressors/index.cjs"},"import":{"types":"./dist/retrievers/document_compressors/index.d.ts","default":"./dist/retrievers/document_compressors/index.js"}},"./runnables":{"input":"./src/runnables/index.ts","require":{"types":"./dist/runnables/index.d.cts","default":"./dist/runnables/index.cjs"},"import":{"types":"./dist/runnables/index.d.ts","default":"./dist/runnables/index.js"}},"./runnables/graph":{"input":"./src/runnables/graph.ts","require":{"types":"./dist/runnables/graph.d.cts","default":"./dist/runnables/graph.cjs"},"import":{"types":"./dist/runnables/graph.d.ts","default":"./dist/runnables/graph.js"}},"./singletons":{"input":"./src/singletons/index.ts","require":{"types":"./dist/singletons/index.d.cts","default":"./dist/singletons/index.cjs"},"import":{"types":"./dist/singletons/index.d.ts","default":"./dist/singletons/index.js"}},"./stores":{"input":"./src/stores.ts","require":{"types":"./dist/stores.d.cts","default":"./dist/stores.cjs"},"import":{"types":"./dist/stores.d.ts","default":"./dist/stores.js"}},"./structured_query":{"input":"./src/structured_query/index.ts","require":{"types":"./dist/structured_query/index.d.cts","default":"./dist/structured_query/index.cjs"},"import":{"types":"./dist/structured_query/index.d.ts","default":"./dist/structured_query/index.js"}},"./tools":{"input":"./src/tools/index.ts","require":{"types":"./dist/tools/index.d.cts","default":"./dist/tools/index.cjs"},"import":{"types":"./dist/tools/index.d.ts","default":"./dist/tools/index.js"}},"./tracers/base":{"input":"./src/tracers/base.ts","require":{"types":"./dist/tracers/base.d.cts","default":"./dist/tracers/base.cjs"},"import":{"types":"./dist/tracers/base.d.ts","default":"./dist/tracers/base.js"}},"./tracers/console":{"input":"./src/tracers/console.ts","require":{"types":"./dist/tracers/console.d.cts","default":"./dist/tracers/console.cjs"},"import":{"types":"./dist/tracers/console.d.ts","default":"./dist/tracers/console.js"}},"./tracers/log_stream":{"input":"./src/tracers/log_stream.ts","require":{"types":"./dist/tracers/log_stream.d.cts","default":"./dist/tracers/log_stream.cjs"},"import":{"types":"./dist/tracers/log_stream.d.ts","default":"./dist/tracers/log_stream.js"}},"./tracers/run_collector":{"input":"./src/tracers/run_collector.ts","require":{"types":"./dist/tracers/run_collector.d.cts","default":"./dist/tracers/run_collector.cjs"},"import":{"types":"./dist/tracers/run_collector.d.ts","default":"./dist/tracers/run_collector.js"}},"./tracers/tracer_langchain":{"input":"./src/tracers/tracer_langchain.ts","require":{"types":"./dist/tracers/tracer_langchain.d.cts","default":"./dist/tracers/tracer_langchain.cjs"},"import":{"types":"./dist/tracers/tracer_langchain.d.ts","default":"./dist/tracers/tracer_langchain.js"}},"./types/stream":{"input":"./src/types/stream.ts","require":{"types":"./dist/types/stream.d.cts","default":"./dist/types/stream.cjs"},"import":{"types":"./dist/types/stream.d.ts","default":"./dist/types/stream.js"}},"./utils/async_caller":{"input":"./src/utils/async_caller.ts","require":{"types":"./dist/utils/async_caller.d.cts","default":"./dist/utils/async_caller.cjs"},"import":{"types":"./dist/utils/async_caller.d.ts","default":"./dist/utils/async_caller.js"}},"./utils/chunk_array":{"input":"./src/utils/chunk_array.ts","require":{"types":"./dist/utils/chunk_array.d.cts","default":"./dist/utils/chunk_array.cjs"},"import":{"types":"./dist/utils/chunk_array.d.ts","default":"./dist/utils/chunk_array.js"}},"./utils/context":{"input":"./src/utils/context.ts","require":{"types":"./dist/utils/context.d.cts","default":"./dist/utils/context.cjs"},"import":{"types":"./dist/utils/context.d.ts","default":"./dist/utils/context.js"}},"./utils/env":{"input":"./src/utils/env.ts","require":{"types":"./dist/utils/env.d.cts","default":"./dist/utils/env.cjs"},"import":{"types":"./dist/utils/env.d.ts","default":"./dist/utils/env.js"}},"./utils/event_source_parse":{"input":"./src/utils/event_source_parse.ts","require":{"types":"./dist/utils/event_source_parse.d.cts","default":"./dist/utils/event_source_parse.cjs"},"import":{"types":"./dist/utils/event_source_parse.d.ts","default":"./dist/utils/event_source_parse.js"}},"./utils/format":{"input":"./src/utils/format.ts","require":{"types":"./dist/utils/format.d.cts","default":"./dist/utils/format.cjs"},"import":{"types":"./dist/utils/format.d.ts","default":"./dist/utils/format.js"}},"./utils/function_calling":{"input":"./src/utils/function_calling.ts","require":{"types":"./dist/utils/function_calling.d.cts","default":"./dist/utils/function_calling.cjs"},"import":{"types":"./dist/utils/function_calling.d.ts","default":"./dist/utils/function_calling.js"}},"./utils/hash":{"input":"./src/utils/hash.ts","require":{"types":"./dist/utils/hash.d.cts","default":"./dist/utils/hash.cjs"},"import":{"types":"./dist/utils/hash.d.ts","default":"./dist/utils/hash.js"}},"./utils/json_patch":{"input":"./src/utils/json_patch.ts","require":{"types":"./dist/utils/json_patch.d.cts","default":"./dist/utils/json_patch.cjs"},"import":{"types":"./dist/utils/json_patch.d.ts","default":"./dist/utils/json_patch.js"}},"./utils/json_schema":{"input":"./src/utils/json_schema.ts","require":{"types":"./dist/utils/json_schema.d.cts","default":"./dist/utils/json_schema.cjs"},"import":{"types":"./dist/utils/json_schema.d.ts","default":"./dist/utils/json_schema.js"}},"./utils/math":{"input":"./src/utils/math.ts","require":{"types":"./dist/utils/math.d.cts","default":"./dist/utils/math.cjs"},"import":{"types":"./dist/utils/math.d.ts","default":"./dist/utils/math.js"}},"./utils/ssrf":{"input":"./src/utils/ssrf.ts","require":{"types":"./dist/utils/ssrf.d.cts","default":"./dist/utils/ssrf.cjs"},"import":{"types":"./dist/utils/ssrf.d.ts","default":"./dist/utils/ssrf.js"}},"./utils/stream":{"input":"./src/utils/stream.ts","require":{"types":"./dist/utils/stream.d.cts","default":"./dist/utils/stream.cjs"},"import":{"types":"./dist/utils/stream.d.ts","default":"./dist/utils/stream.js"}},"./utils/testing":{"input":"./src/utils/testing/index.ts","require":{"types":"./dist/utils/testing/index.d.cts","default":"./dist/utils/testing/index.cjs"},"import":{"types":"./dist/utils/testing/index.d.ts","default":"./dist/utils/testing/index.js"}},"./utils/tiktoken":{"input":"./src/utils/tiktoken.ts","require":{"types":"./dist/utils/tiktoken.d.cts","default":"./dist/utils/tiktoken.cjs"},"import":{"types":"./dist/utils/tiktoken.d.ts","default":"./dist/utils/tiktoken.js"}},"./utils/types":{"input":"./src/utils/types/index.ts","require":{"types":"./dist/utils/types/index.d.cts","default":"./dist/utils/types/index.cjs"},"import":{"types":"./dist/utils/types/index.d.ts","default":"./dist/utils/types/index.js"}},"./vectorstores":{"input":"./src/vectorstores.ts","require":{"types":"./dist/vectorstores.d.cts","default":"./dist/vectorstores.cjs"},"import":{"types":"./dist/vectorstores.d.ts","default":"./dist/vectorstores.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE","retrievers","load","load.d.cts","load.cjs","load.d.ts","load.js","prompts.d.cts","prompts.cjs","prompts.d.ts","prompts.js","utils","output_parsers","types","language_models","embeddings.d.cts","embeddings.cjs","embeddings.d.ts","embeddings.js","callbacks","tracers","example_selectors.d.cts","example_selectors.cjs","example_selectors.d.ts","example_selectors.js","context.d.cts","context.cjs","context.d.ts","context.js","chat_history.d.cts","chat_history.cjs","chat_history.d.ts","chat_history.js","structured_query.d.cts","structured_query.cjs","structured_query.d.ts","structured_query.js","stores.d.cts","stores.cjs","stores.d.ts","stores.js","singletons.d.cts","singletons.cjs","singletons.d.ts","singletons.js","indexing.d.cts","indexing.cjs","indexing.d.ts","indexing.js","documents.d.cts","documents.cjs","documents.d.ts","documents.js","messages.d.cts","messages.cjs","messages.d.ts","messages.js","runnables","output_parsers.d.cts","output_parsers.cjs","output_parsers.d.ts","output_parsers.js","prompt_values.d.cts","prompt_values.cjs","prompt_values.d.ts","prompt_values.js","document_loaders","retrievers.d.cts","retrievers.cjs","retrievers.d.ts","retrievers.js","memory.d.cts","memory.cjs","memory.d.ts","memory.js","runnables.d.cts","runnables.cjs","runnables.d.ts","runnables.js","tools.d.cts","tools.cjs","tools.d.ts","tools.js","vectorstores.d.cts","vectorstores.cjs","vectorstores.d.ts","vectorstores.js","caches.d.cts","caches.cjs","caches.d.ts","caches.js","agents.d.cts","agents.cjs","agents.d.ts","agents.js","messages","outputs.d.cts","outputs.cjs","outputs.d.ts","outputs.js"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/core --output-logs new-only","build:compile":"tsdown","clean":"rm -rf .turbo dist/","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts --exclude \"(node_modules|src/utils/zod-to-json-schema)\" --transform","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","test":"vitest run","test:watch":"vitest watch","test:int":"vitest run --mode int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\""},"_lastModified":"2026-02-27T08:23:22.798Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/deepseek","version":"1.0.11","description":"Deepseek integration for LangChain.js","type":"module","author":"LangChain","license":"MIT","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-deepseek","dependencies":{"@langchain/openai":"1.2.7"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@tsconfig/recommended":"^1.0.3","@vitest/coverage-v8":"^3.2.4","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","typescript":"~5.8.3","vitest":"^3.2.4","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/deepseek --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-25T16:52:45.161Z"}
1
+ {"name":"@langchain/deepseek","version":"1.0.11","description":"Deepseek integration for LangChain.js","type":"module","author":"LangChain","license":"MIT","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-deepseek","dependencies":{"@langchain/openai":"1.2.7"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@tsconfig/recommended":"^1.0.3","@vitest/coverage-v8":"^3.2.4","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","typescript":"~5.8.3","vitest":"^3.2.4","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/deepseek --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-27T08:23:43.487Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/google-genai","version":"2.1.18","description":"Google Generative AI integration for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-genai/","dependencies":{"@google/generative-ai":"^0.24.0","uuid":"^11.1.0"},"peerDependencies":{"@langchain/core":"^1.1.23"},"devDependencies":{"@jest/globals":"^30.2.0","@swc/core":"^1.15.11","@swc/jest":"^0.2.29","@tsconfig/recommended":"^1.0.3","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","hnswlib-node":"^3.0.0","jest":"^30.2.0","jest-environment-node":"^30.2.0","prettier":"^3.5.0","ts-jest":"^29.4.6","typescript":"~5.8.3","zod":"^3.25.76","@langchain/core":"^1.1.23","@langchain/tsconfig":"0.0.1","@langchain/standard-tests":"0.0.23","@langchain/eslint":"0.1.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/google-genai --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%","test:watch":"NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts","test:single":"NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.cjs --testTimeout 100000","test:int":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard:unit":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard:int":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-25T16:52:48.631Z"}
1
+ {"name":"@langchain/google-genai","version":"2.1.18","description":"Google Generative AI integration for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-genai/","dependencies":{"@google/generative-ai":"^0.24.0","uuid":"^11.1.0"},"peerDependencies":{"@langchain/core":"^1.1.23"},"devDependencies":{"@jest/globals":"^30.2.0","@swc/core":"^1.15.11","@swc/jest":"^0.2.29","@tsconfig/recommended":"^1.0.3","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","hnswlib-node":"^3.0.0","jest":"^30.2.0","jest-environment-node":"^30.2.0","prettier":"^3.5.0","ts-jest":"^29.4.6","typescript":"~5.8.3","zod":"^3.25.76","@langchain/core":"^1.1.23","@langchain/tsconfig":"0.0.1","@langchain/standard-tests":"0.0.23","@langchain/eslint":"0.1.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/google-genai --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%","test:watch":"NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts","test:single":"NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.cjs --testTimeout 100000","test:int":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard:unit":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard:int":"NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-27T08:23:46.936Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/langgraph","version":"1.1.4","description":"LangGraph","type":"module","engines":{"node":">=18"},"main":"./dist/index.js","types":"./dist/index.d.ts","repository":{"type":"git","url":"git+ssh://git@github.com/langchain-ai/langgraphjs.git","directory":"libs/langgraph-core"},"author":"LangChain","license":"MIT","dependencies":{"@standard-schema/spec":"1.1.0","uuid":"^10.0.0","@langchain/langgraph-checkpoint":"^1.0.0","@langchain/langgraph-sdk":"~1.6.0"},"peerDependencies":{"@langchain/core":"^1.1.16","zod":"^3.25.32 || ^4.2.0","zod-to-json-schema":"^3.x"},"peerDependenciesMeta":{"zod-to-json-schema":{"optional":true}},"devDependencies":{"@langchain/anthropic":"^1.0.0","@langchain/core":"^1.1.16","@langchain/openai":"^1.0.0","@langchain/scripts":">=0.1.3 <0.2.0","@langchain/tavily":"^1.0.0","@swc/core":"^1.3.90","@testing-library/dom":"^10.4.0","@tsconfig/recommended":"^1.0.3","@types/pg":"^8","@types/uuid":"^10","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","@vitest/browser":"^3.0.8","@xenova/transformers":"^2.17.2","cheerio":"1.0.0-rc.12","dotenv":"^16.3.1","dpdm":"^3.12.0","eslint":"^8.33.0","eslint-config-airbnb-base":"^15.0.0","eslint-config-prettier":"^8.6.0","eslint-plugin-import":"^2.29.1","eslint-plugin-no-instanceof":"^1.0.1","eslint-plugin-prettier":"^4.2.1","langchain":"^1.0.0-alpha","pg":"^8.13.0","playwright":"^1.55.1","prettier":"^2.8.3","rollup":"^4.37.0","tsx":"^4.19.3","typescript":"^4.9.5 || ^5.4.5","vite-plugin-node-polyfills":"^0.23.0","vitest":"^3.2.4","zod-to-json-schema":"^3.22.4","@langchain/langgraph-checkpoint-postgres":"1.0.0","@langchain/langgraph-checkpoint-sqlite":"1.0.1"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"exports":{".":{"input":"./src/index.ts","typedoc":"./src/index.ts","import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./web":{"input":"./src/web.ts","typedoc":"./src/web.ts","import":{"types":"./dist/web.d.ts","default":"./dist/web.js"},"require":{"types":"./dist/web.d.cts","default":"./dist/web.cjs"}},"./channels":{"input":"./src/channels/index.ts","typedoc":"./src/channels/index.ts","import":{"types":"./dist/channels/index.d.ts","default":"./dist/channels/index.js"},"require":{"types":"./dist/channels/index.d.cts","default":"./dist/channels/index.cjs"}},"./pregel":{"input":"./src/pregel/index.ts","typedoc":"./src/pregel/index.ts","import":{"types":"./dist/pregel/index.d.ts","default":"./dist/pregel/index.js"},"require":{"types":"./dist/pregel/index.d.cts","default":"./dist/pregel/index.cjs"}},"./prebuilt":{"input":"./src/prebuilt/index.ts","typedoc":"./src/prebuilt/index.ts","import":{"types":"./dist/prebuilt/index.d.ts","default":"./dist/prebuilt/index.js"},"require":{"types":"./dist/prebuilt/index.d.cts","default":"./dist/prebuilt/index.cjs"}},"./remote":{"input":"./src/remote.ts","typedoc":"./src/remote.ts","import":{"types":"./dist/remote.d.ts","default":"./dist/remote.js"},"require":{"types":"./dist/remote.d.cts","default":"./dist/remote.cjs"}},"./zod":{"input":"./src/graph/zod/index.ts","typedoc":"./src/graph/zod/index.ts","import":{"types":"./dist/graph/zod/index.d.ts","default":"./dist/graph/zod/index.js"},"require":{"types":"./dist/graph/zod/index.d.cts","default":"./dist/graph/zod/index.cjs"}},"./zod/schema":{"input":"./src/graph/zod/schema.ts","typedoc":"./src/graph/zod/schema.ts","import":{"types":"./dist/graph/zod/schema.d.ts","default":"./dist/graph/zod/schema.js"},"require":{"types":"./dist/graph/zod/schema.d.cts","default":"./dist/graph/zod/schema.cjs"}},"./package.json":"./package.json"},"files":["dist/"],"scripts":{"build":"pnpm turbo build:internal --filter=@langchain/langgraph","build:internal":"pnpm --filter @langchain/build compile @langchain/langgraph","clean":"rm -rf dist/ dist-cjs/ .turbo/","lint:eslint":"NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/","lint:dpdm":"dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","prepublish":"pnpm build","test":"vitest run","test:browser":"vitest run --mode browser","test:watch":"vitest watch","test:int":"vitest run --mode int","bench":"vitest bench --mode bench","format":"prettier --config .prettierrc --write \"src\"","format:check":"prettier --config .prettierrc --check \"src\""},"_lastModified":"2026-02-25T16:52:33.341Z"}
1
+ {"name":"@langchain/langgraph","version":"1.1.4","description":"LangGraph","type":"module","engines":{"node":">=18"},"main":"./dist/index.js","types":"./dist/index.d.ts","repository":{"type":"git","url":"git+ssh://git@github.com/langchain-ai/langgraphjs.git","directory":"libs/langgraph-core"},"author":"LangChain","license":"MIT","dependencies":{"@standard-schema/spec":"1.1.0","uuid":"^10.0.0","@langchain/langgraph-checkpoint":"^1.0.0","@langchain/langgraph-sdk":"~1.6.0"},"peerDependencies":{"@langchain/core":"^1.1.16","zod":"^3.25.32 || ^4.2.0","zod-to-json-schema":"^3.x"},"peerDependenciesMeta":{"zod-to-json-schema":{"optional":true}},"devDependencies":{"@langchain/anthropic":"^1.0.0","@langchain/core":"^1.1.16","@langchain/openai":"^1.0.0","@langchain/scripts":">=0.1.3 <0.2.0","@langchain/tavily":"^1.0.0","@swc/core":"^1.3.90","@testing-library/dom":"^10.4.0","@tsconfig/recommended":"^1.0.3","@types/pg":"^8","@types/uuid":"^10","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","@vitest/browser":"^3.0.8","@xenova/transformers":"^2.17.2","cheerio":"1.0.0-rc.12","dotenv":"^16.3.1","dpdm":"^3.12.0","eslint":"^8.33.0","eslint-config-airbnb-base":"^15.0.0","eslint-config-prettier":"^8.6.0","eslint-plugin-import":"^2.29.1","eslint-plugin-no-instanceof":"^1.0.1","eslint-plugin-prettier":"^4.2.1","langchain":"^1.0.0-alpha","pg":"^8.13.0","playwright":"^1.55.1","prettier":"^2.8.3","rollup":"^4.37.0","tsx":"^4.19.3","typescript":"^4.9.5 || ^5.4.5","vite-plugin-node-polyfills":"^0.23.0","vitest":"^3.2.4","zod-to-json-schema":"^3.22.4","@langchain/langgraph-checkpoint-postgres":"1.0.0","@langchain/langgraph-checkpoint-sqlite":"1.0.1"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"exports":{".":{"input":"./src/index.ts","typedoc":"./src/index.ts","import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./web":{"input":"./src/web.ts","typedoc":"./src/web.ts","import":{"types":"./dist/web.d.ts","default":"./dist/web.js"},"require":{"types":"./dist/web.d.cts","default":"./dist/web.cjs"}},"./channels":{"input":"./src/channels/index.ts","typedoc":"./src/channels/index.ts","import":{"types":"./dist/channels/index.d.ts","default":"./dist/channels/index.js"},"require":{"types":"./dist/channels/index.d.cts","default":"./dist/channels/index.cjs"}},"./pregel":{"input":"./src/pregel/index.ts","typedoc":"./src/pregel/index.ts","import":{"types":"./dist/pregel/index.d.ts","default":"./dist/pregel/index.js"},"require":{"types":"./dist/pregel/index.d.cts","default":"./dist/pregel/index.cjs"}},"./prebuilt":{"input":"./src/prebuilt/index.ts","typedoc":"./src/prebuilt/index.ts","import":{"types":"./dist/prebuilt/index.d.ts","default":"./dist/prebuilt/index.js"},"require":{"types":"./dist/prebuilt/index.d.cts","default":"./dist/prebuilt/index.cjs"}},"./remote":{"input":"./src/remote.ts","typedoc":"./src/remote.ts","import":{"types":"./dist/remote.d.ts","default":"./dist/remote.js"},"require":{"types":"./dist/remote.d.cts","default":"./dist/remote.cjs"}},"./zod":{"input":"./src/graph/zod/index.ts","typedoc":"./src/graph/zod/index.ts","import":{"types":"./dist/graph/zod/index.d.ts","default":"./dist/graph/zod/index.js"},"require":{"types":"./dist/graph/zod/index.d.cts","default":"./dist/graph/zod/index.cjs"}},"./zod/schema":{"input":"./src/graph/zod/schema.ts","typedoc":"./src/graph/zod/schema.ts","import":{"types":"./dist/graph/zod/schema.d.ts","default":"./dist/graph/zod/schema.js"},"require":{"types":"./dist/graph/zod/schema.d.cts","default":"./dist/graph/zod/schema.cjs"}},"./package.json":"./package.json"},"files":["dist/"],"scripts":{"build":"pnpm turbo build:internal --filter=@langchain/langgraph","build:internal":"pnpm --filter @langchain/build compile @langchain/langgraph","clean":"rm -rf dist/ dist-cjs/ .turbo/","lint:eslint":"NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/","lint:dpdm":"dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","prepublish":"pnpm build","test":"vitest run","test:browser":"vitest run --mode browser","test:watch":"vitest watch","test:int":"vitest run --mode int","bench":"vitest bench --mode bench","format":"prettier --config .prettierrc --write \"src\"","format:check":"prettier --config .prettierrc --check \"src\""},"_lastModified":"2026-02-27T08:23:31.719Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/langgraph-checkpoint","version":"1.0.0","description":"Library with base interfaces for LangGraph checkpoint savers.","type":"module","engines":{"node":">=18"},"main":"./dist/index.js","types":"./dist/index.d.ts","repository":{"type":"git","url":"git@github.com:langchain-ai/langgraphjs.git"},"scripts":{"build":"yarn turbo:command build:internal --filter=@langchain/langgraph-checkpoint","build:internal":"yarn workspace @langchain/build compile @langchain/langgraph-checkpoint","clean":"rm -rf dist/ dist-cjs/ .turbo/","lint:eslint":"NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/","lint:dpdm":"dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"yarn lint:eslint && yarn lint:dpdm","lint:fix":"yarn lint:eslint --fix && yarn lint:dpdm","prepublish":"yarn build","test":"vitest run","test:watch":"vitest watch","test:int":"vitest run --mode int","format":"prettier --config .prettierrc --write \"src\"","format:check":"prettier --config .prettierrc --check \"src\""},"author":"LangChain","license":"MIT","dependencies":{"uuid":"^10.0.0"},"peerDependencies":{"@langchain/core":"^1.0.1"},"devDependencies":{"@langchain/scripts":">=0.1.3 <0.2.0","@tsconfig/recommended":"^1.0.3","@types/uuid":"^10","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","dotenv":"^16.3.1","dpdm":"^3.12.0","eslint":"^8.33.0","eslint-config-airbnb-base":"^15.0.0","eslint-config-prettier":"^8.6.0","eslint-plugin-import":"^2.29.1","eslint-plugin-no-instanceof":"^1.0.1","eslint-plugin-prettier":"^4.2.1","prettier":"^2.8.3","rollup":"^4.37.0","tsx":"^4.19.3","typescript":"^4.9.5 || ^5.4.5","vitest":"^3.1.2"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"exports":{".":{"input":"./src/index.ts","typedoc":"./src/index.ts","import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./package.json":"./package.json"},"files":["dist/"],"_lastModified":"2026-02-25T16:52:56.182Z"}
1
+ {"name":"@langchain/langgraph-checkpoint","version":"1.0.0","description":"Library with base interfaces for LangGraph checkpoint savers.","type":"module","engines":{"node":">=18"},"main":"./dist/index.js","types":"./dist/index.d.ts","repository":{"type":"git","url":"git@github.com:langchain-ai/langgraphjs.git"},"scripts":{"build":"yarn turbo:command build:internal --filter=@langchain/langgraph-checkpoint","build:internal":"yarn workspace @langchain/build compile @langchain/langgraph-checkpoint","clean":"rm -rf dist/ dist-cjs/ .turbo/","lint:eslint":"NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/","lint:dpdm":"dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"yarn lint:eslint && yarn lint:dpdm","lint:fix":"yarn lint:eslint --fix && yarn lint:dpdm","prepublish":"yarn build","test":"vitest run","test:watch":"vitest watch","test:int":"vitest run --mode int","format":"prettier --config .prettierrc --write \"src\"","format:check":"prettier --config .prettierrc --check \"src\""},"author":"LangChain","license":"MIT","dependencies":{"uuid":"^10.0.0"},"peerDependencies":{"@langchain/core":"^1.0.1"},"devDependencies":{"@langchain/scripts":">=0.1.3 <0.2.0","@tsconfig/recommended":"^1.0.3","@types/uuid":"^10","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","dotenv":"^16.3.1","dpdm":"^3.12.0","eslint":"^8.33.0","eslint-config-airbnb-base":"^15.0.0","eslint-config-prettier":"^8.6.0","eslint-plugin-import":"^2.29.1","eslint-plugin-no-instanceof":"^1.0.1","eslint-plugin-prettier":"^4.2.1","prettier":"^2.8.3","rollup":"^4.37.0","tsx":"^4.19.3","typescript":"^4.9.5 || ^5.4.5","vitest":"^3.1.2"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"exports":{".":{"input":"./src/index.ts","typedoc":"./src/index.ts","import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./package.json":"./package.json"},"files":["dist/"],"_lastModified":"2026-02-27T08:23:54.057Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/ollama","version":"1.2.2","description":"Ollama integration for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-ollama/","dependencies":{"ollama":"^0.6.3","uuid":"^10.0.0"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@jest/globals":"^29.5.0","@tsconfig/recommended":"^1.0.3","@vitest/coverage-v8":"^3.2.4","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","typescript":"~5.8.3","zod":"^3.25.76","vitest":"^3.2.4","@langchain/core":"1.1.18","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.21","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/ollama --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\""},"_lastModified":"2026-02-25T16:52:51.341Z"}
1
+ {"name":"@langchain/ollama","version":"1.2.2","description":"Ollama integration for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-ollama/","dependencies":{"ollama":"^0.6.3","uuid":"^10.0.0"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@jest/globals":"^29.5.0","@tsconfig/recommended":"^1.0.3","@vitest/coverage-v8":"^3.2.4","dotenv":"^16.3.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","typescript":"~5.8.3","zod":"^3.25.76","vitest":"^3.2.4","@langchain/core":"1.1.18","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.21","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/ollama --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\""},"_lastModified":"2026-02-27T08:23:49.618Z"}
@@ -1 +1 @@
1
- {"name":"@langchain/openai","version":"1.2.7","description":"OpenAI integrations for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-openai/","dependencies":{"js-tiktoken":"^1.0.12","openai":"^6.18.0","zod":"^3.25.76 || ^4"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@azure/identity":"^4.2.1","@cfworker/json-schema":"^4.1.1","@tsconfig/recommended":"^1.0.10","@types/node":"^24.10.1","@vitest/coverage-v8":"^3.2.4","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","uuid":"^11.1.0","vitest":"^3.2.4","zod-to-json-schema":"^3.24.6","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","openai","embeddings","vectorstores"],"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/openai --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-25T16:52:41.341Z"}
1
+ {"name":"@langchain/openai","version":"1.2.7","description":"OpenAI integrations for LangChain.js","author":"LangChain","license":"MIT","type":"module","engines":{"node":">=20"},"repository":{"type":"git","url":"git@github.com:langchain-ai/langchainjs.git"},"homepage":"https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-openai/","dependencies":{"js-tiktoken":"^1.0.12","openai":"^6.18.0","zod":"^3.25.76 || ^4"},"peerDependencies":{"@langchain/core":"^1.0.0"},"devDependencies":{"@azure/identity":"^4.2.1","@cfworker/json-schema":"^4.1.1","@tsconfig/recommended":"^1.0.10","@types/node":"^24.10.1","@vitest/coverage-v8":"^3.2.4","dotenv":"^17.2.1","dpdm":"^3.14.0","eslint":"^9.34.0","prettier":"^3.5.0","rimraf":"^5.0.1","typescript":"~5.8.3","uuid":"^11.1.0","vitest":"^3.2.4","zod-to-json-schema":"^3.24.6","@langchain/core":"^1.1.21","@langchain/eslint":"0.1.1","@langchain/standard-tests":"0.0.23","@langchain/tsconfig":"0.0.1"},"publishConfig":{"access":"public"},"keywords":["llm","ai","gpt3","chain","prompt","prompt engineering","chatgpt","machine learning","ml","openai","embeddings","vectorstores"],"main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":{"input":"./src/index.ts","require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./package.json":"./package.json"},"files":["dist/","CHANGELOG.md","README.md","LICENSE"],"module":"./dist/index.js","scripts":{"build":"turbo build:compile --filter @langchain/openai --output-logs new-only","build:compile":"tsdown","lint:eslint":"eslint --cache src/","lint:dpdm":"dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts","lint":"pnpm lint:eslint && pnpm lint:dpdm","lint:fix":"pnpm lint:eslint --fix && pnpm lint:dpdm","clean":"rm -rf .turbo dist/","test":"vitest run","test:watch":"vitest","test:int":"vitest run --mode int","test:standard:unit":"vitest run --mode standard-unit","test:standard:int":"vitest run --mode standard-int","test:standard":"pnpm test:standard:unit && pnpm test:standard:int","format":"prettier --write \"src\"","format:check":"prettier --check \"src\"","typegen":"pnpm run typegen:profiles","typegen:profiles":"pnpm --filter @langchain/model-profiles make --config profiles.toml"},"_lastModified":"2026-02-27T08:23:39.692Z"}
@@ -1 +1 @@
1
- {"name":"fast-glob","version":"3.3.2","description":"It's a very fast and efficient glob library for Node.js","license":"MIT","repository":"mrmlnc/fast-glob","author":{"name":"Denis Malinochkin","url":"https://mrmlnc.com"},"engines":{"node":">=8.6.0"},"main":"out/index.js","typings":"out/index.d.ts","files":["out","!out/{benchmark,tests}","!out/**/*.map","!out/**/*.spec.*"],"keywords":["glob","patterns","fast","implementation"],"devDependencies":{"@nodelib/fs.macchiato":"^1.0.1","@types/glob-parent":"^5.1.0","@types/merge2":"^1.1.4","@types/micromatch":"^4.0.0","@types/mocha":"^5.2.7","@types/node":"^14.18.53","@types/picomatch":"^2.3.0","@types/sinon":"^7.5.0","bencho":"^0.1.1","eslint":"^6.5.1","eslint-config-mrmlnc":"^1.1.0","execa":"^7.1.1","fast-glob":"^3.0.4","fdir":"^6.0.1","glob":"^10.0.0","hereby":"^1.8.1","mocha":"^6.2.1","rimraf":"^5.0.0","sinon":"^7.5.0","snap-shot-it":"^7.9.10","typescript":"^4.9.5"},"dependencies":{"@nodelib/fs.stat":"^2.0.2","@nodelib/fs.walk":"^1.2.3","glob-parent":"^5.1.2","merge2":"^1.3.0","micromatch":"^4.0.4"},"scripts":{"clean":"rimraf out","lint":"eslint \"src/**/*.ts\" --cache","compile":"tsc","test":"mocha \"out/**/*.spec.js\" -s 0","test:e2e":"mocha \"out/**/*.e2e.js\" -s 0","test:e2e:sync":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(sync\\)\"","test:e2e:async":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(async\\)\"","test:e2e:stream":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(stream\\)\"","build":"npm run clean && npm run compile && npm run lint && npm test","watch":"npm run clean && npm run compile -- --sourceMap --watch","bench:async":"npm run bench:product:async && npm run bench:regression:async","bench:stream":"npm run bench:product:stream && npm run bench:regression:stream","bench:sync":"npm run bench:product:sync && npm run bench:regression:sync","bench:product":"npm run bench:product:async && npm run bench:product:sync && npm run bench:product:stream","bench:product:async":"hereby bench:product:async","bench:product:sync":"hereby bench:product:sync","bench:product:stream":"hereby bench:product:stream","bench:regression":"npm run bench:regression:async && npm run bench:regression:sync && npm run bench:regression:stream","bench:regression:async":"hereby bench:regression:async","bench:regression:sync":"hereby bench:regression:sync","bench:regression:stream":"hereby bench:regression:stream"},"_lastModified":"2026-02-25T16:52:52.081Z"}
1
+ {"name":"fast-glob","version":"3.3.2","description":"It's a very fast and efficient glob library for Node.js","license":"MIT","repository":"mrmlnc/fast-glob","author":{"name":"Denis Malinochkin","url":"https://mrmlnc.com"},"engines":{"node":">=8.6.0"},"main":"out/index.js","typings":"out/index.d.ts","files":["out","!out/{benchmark,tests}","!out/**/*.map","!out/**/*.spec.*"],"keywords":["glob","patterns","fast","implementation"],"devDependencies":{"@nodelib/fs.macchiato":"^1.0.1","@types/glob-parent":"^5.1.0","@types/merge2":"^1.1.4","@types/micromatch":"^4.0.0","@types/mocha":"^5.2.7","@types/node":"^14.18.53","@types/picomatch":"^2.3.0","@types/sinon":"^7.5.0","bencho":"^0.1.1","eslint":"^6.5.1","eslint-config-mrmlnc":"^1.1.0","execa":"^7.1.1","fast-glob":"^3.0.4","fdir":"^6.0.1","glob":"^10.0.0","hereby":"^1.8.1","mocha":"^6.2.1","rimraf":"^5.0.0","sinon":"^7.5.0","snap-shot-it":"^7.9.10","typescript":"^4.9.5"},"dependencies":{"@nodelib/fs.stat":"^2.0.2","@nodelib/fs.walk":"^1.2.3","glob-parent":"^5.1.2","merge2":"^1.3.0","micromatch":"^4.0.4"},"scripts":{"clean":"rimraf out","lint":"eslint \"src/**/*.ts\" --cache","compile":"tsc","test":"mocha \"out/**/*.spec.js\" -s 0","test:e2e":"mocha \"out/**/*.e2e.js\" -s 0","test:e2e:sync":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(sync\\)\"","test:e2e:async":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(async\\)\"","test:e2e:stream":"mocha \"out/**/*.e2e.js\" -s 0 --grep \"\\(stream\\)\"","build":"npm run clean && npm run compile && npm run lint && npm test","watch":"npm run clean && npm run compile -- --sourceMap --watch","bench:async":"npm run bench:product:async && npm run bench:regression:async","bench:stream":"npm run bench:product:stream && npm run bench:regression:stream","bench:sync":"npm run bench:product:sync && npm run bench:regression:sync","bench:product":"npm run bench:product:async && npm run bench:product:sync && npm run bench:product:stream","bench:product:async":"hereby bench:product:async","bench:product:sync":"hereby bench:product:sync","bench:product:stream":"hereby bench:product:stream","bench:regression":"npm run bench:regression:async && npm run bench:regression:sync && npm run bench:regression:stream","bench:regression:async":"hereby bench:regression:async","bench:regression:sync":"hereby bench:regression:sync","bench:regression:stream":"hereby bench:regression:stream"},"_lastModified":"2026-02-27T08:23:50.367Z"}
@@ -1 +1 @@
1
- {"public":true,"preferGlobal":false,"name":"flexsearch","version":"0.8.212","description":"Next-Generation full-text search library for Browser and Node.js","homepage":"https://github.com/nextapps-de/flexsearch/","author":"Thomas Wilkerling","copyright":"Nextapps GmbH","license":"Apache-2.0","readme":"README.md","keywords":["fulltext search","elastic search","fastest search","contextual search","document search","fuzzy search","fuzzy match","search engine"],"repository":{"type":"git","url":"https://github.com/nextapps-de/flexsearch.git"},"bugs":{"url":"https://github.com/nextapps-de/flexsearch/issues","email":"info@nextapps.de"},"main":"dist/flexsearch.bundle.min.js","module":"dist/flexsearch.bundle.module.min.mjs","types":"./index.d.ts","exports":{".":{"types":"./index.d.ts","import":"./dist/flexsearch.bundle.module.min.mjs","require":"./dist/flexsearch.bundle.min.js"},"./lang/*":{"import":"./dist/module/lang/*.js","require":"./dist/lang/*.min.js"},"./db/*":{"import":"./dist/module/db/*/index.js","require":"./dist/db/*/index.cjs"},"./debug":{"import":"./dist/flexsearch.bundle.module.debug.mjs","require":"./dist/flexsearch.bundle.debug.js"}},"browser":{"flexsearch":"./dist/flexsearch.bundle.module.min.mjs","flexsearch/debug":"./dist/flexsearch.bundle.module.debug.mjs","dist/flexsearch.bundle.min.js":"./dist/flexsearch.bundle.min.js","dist/flexsearch.bundle.module.min.js":"./dist/flexsearch.bundle.module.min.mjs","dist/flexsearch.bundle.module.min.mjs":"./dist/flexsearch.bundle.module.min.mjs","worker_threads":false,"path":false,"clickhouse":false,"mongodb":false,"pg-promise":false,"redis":false,"sqlite3":false},"scripts":{"build":"npm run build:bundle && npm run build:bundle:debug && exit 0","build:bundle":"node task/build RELEASE=bundle DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false","build:bundle:debug":"node task/build RELEASE=bundle DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:compact":"node task/build RELEASE=compact DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:compact:debug":"node task/build RELEASE=compact DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:light":"node task/build RELEASE=light DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:light:debug":"node task/build RELEASE=light DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:es5":"node task/build RELEASE=es5 DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=true SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false LANGUAGE_OUT=ECMASCRIPT5_STRICT","build:es5:debug":"node task/build RELEASE=es5 DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=true SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT LANGUAGE_OUT=ECMASCRIPT5_STRICT","build:lang":"node task/build RELEASE=lang","build:db":"npx rollup tmp/db/indexeddb/index.js --file dist/db/indexeddb/index.cjs --format cjs && npx rollup tmp/db/postgres/index.js --file dist/db/postgres/index.cjs --format cjs && npx rollup tmp/db/sqlite/index.js --file dist/db/sqlite/index.cjs --format cjs && npx rollup tmp/db/mongodb/index.js --file dist/db/mongodb/index.cjs --format cjs && npx rollup tmp/db/redis/index.js --file dist/db/redis/index.cjs --format cjs && npx rollup tmp/db/clickhouse/index.js --file dist/db/clickhouse/index.cjs --format cjs","build:module":"node task/babel && exit 0","build:module:debug":"node task/babel DEBUG=true && exit 0","build:module:min":"node task/babel RELEASE=min && exit 0","build:module:bundle":"node task/build RELEASE=bundle.module DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false","build:module:bundle:debug":"node task/build RELEASE=bundle.module DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:module:compact":"node task/build RELEASE=compact.module DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:module:compact:debug":"node task/build RELEASE=compact.module DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:module:light":"node task/build RELEASE=light.module DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:module:light:debug":"node task/build RELEASE=light.module DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:all":"npm run build:bundle && npm run build:bundle:debug && npm run build:light && npm run build:light:debug && npm run build:compact && npm run build:compact:debug && npm run build:module:bundle && npm run build:module:bundle:debug && npm run build:module:light && npm run build:module:light:debug && npm run build:module:compact && npm run build:module:compact:debug && npm run build:es5 && npm run build:es5:debug && npm run build:lang && npm run build:module && npm run build:module:debug && npm run build:module:min && npm run build:db","build:custom":"node task/build RELEASE=custom","test":"mocha test/*.js --exit","test:coverage":"c8 -c test/.c8rc.json mocha test/*.js --exit","test:keystore":"set NODE_OPTIONS=--max-old-space-size=16000 && c8 -c test/.c8rc.json mocha test/keystore.js --exit","test:db":"c8 -c test/.c8rc.json mocha test/persistent.*.js --exit","test:all":"npx mocha test/*.js --exit module/bundle && npx mocha test/*.js --exit module-debug/bundle && npx mocha test/*.js --exit module-min/bundle && npx mocha test/*.js --exit flexsearch.bundle.debug && npx mocha test/*.js --exit flexsearch.bundle.min && npx mocha test/*.js --exit flexsearch.bundle.module.debug && npx mocha test/*.js --exit flexsearch.bundle.module.min && npx mocha test/*.js --exit flexsearch.compact.debug && npx mocha test/*.js --exit flexsearch.compact.min && npx mocha test/*.js --exit flexsearch.compact.module.debug && npx mocha test/*.js --exit flexsearch.compact.module.min && npx mocha test/*.js --exit flexsearch.es5.debug && npx mocha test/*.js --exit flexsearch.es5.min && npx mocha test/*.js --exit flexsearch.light.debug && npx mocha test/*.js --exit flexsearch.light.min && npx mocha test/*.js --exit flexsearch.light.module.debug && npx mocha test/*.js --exit flexsearch.light.module.min","release":"npm version --no-git-tag-version patch && npm run build:all && npm run test:all"},"files":["dist/**","src/**","task/**","index.d.ts","README.md","CHANGELOG.md","LICENSE"],"devDependencies":{"babel-cli":"^6.26.0","babel-plugin-conditional-compile":"^0.0.5","babel-plugin-minify-constant-folding":"^0.5.0","babel-plugin-minify-dead-code-elimination":"^0.5.2","babel-plugin-minify-flip-comparisons":"^0.4.3","babel-plugin-minify-guarded-expressions":"^0.4.4","babel-plugin-minify-infinity":"^0.4.3","babel-plugin-minify-mangle-names":"^0.5.1","babel-plugin-minify-replace":"^0.5.0","babel-plugin-minify-simplify":"^0.5.1","babel-plugin-minify-type-constructors":"^0.4.3","babel-plugin-transform-member-expression-literals":"^6.9.4","babel-plugin-transform-merge-sibling-variables":"^6.9.5","babel-plugin-transform-minify-booleans":"^6.9.4","babel-plugin-transform-property-literals":"^6.9.4","babel-plugin-transform-simplify-comparison-operators":"^6.9.4","babel-plugin-transform-undefined-to-void":"^6.9.4","c8":"^10.1.3","chai":"^5.2.0","clickhouse":"^2.6.0","google-closure-compiler":"^20250520.0.0","mocha":"^11.1.0","mongodb":"^6.13.0","pg-promise":"^11.13.0","redis":"^5.1.0","rollup":"^4.35.0","sqlite3":"^5.1.7"},"funding":[{"type":"github","url":"https://github.com/ts-thomas"},{"type":"paypal","url":"https://www.paypal.com/donate/?hosted_button_id=GEVR88FC9BWRW"},{"type":"opencollective","url":"https://opencollective.com/flexsearch"},{"type":"patreon","url":"https://patreon.com/user?u=96245532"},{"type":"liberapay","url":"https://liberapay.com/ts-thomas"}],"_lastModified":"2026-02-25T16:52:52.526Z"}
1
+ {"public":true,"preferGlobal":false,"name":"flexsearch","version":"0.8.212","description":"Next-Generation full-text search library for Browser and Node.js","homepage":"https://github.com/nextapps-de/flexsearch/","author":"Thomas Wilkerling","copyright":"Nextapps GmbH","license":"Apache-2.0","readme":"README.md","keywords":["fulltext search","elastic search","fastest search","contextual search","document search","fuzzy search","fuzzy match","search engine"],"repository":{"type":"git","url":"https://github.com/nextapps-de/flexsearch.git"},"bugs":{"url":"https://github.com/nextapps-de/flexsearch/issues","email":"info@nextapps.de"},"main":"dist/flexsearch.bundle.min.js","module":"dist/flexsearch.bundle.module.min.mjs","types":"./index.d.ts","exports":{".":{"types":"./index.d.ts","import":"./dist/flexsearch.bundle.module.min.mjs","require":"./dist/flexsearch.bundle.min.js"},"./lang/*":{"import":"./dist/module/lang/*.js","require":"./dist/lang/*.min.js"},"./db/*":{"import":"./dist/module/db/*/index.js","require":"./dist/db/*/index.cjs"},"./debug":{"import":"./dist/flexsearch.bundle.module.debug.mjs","require":"./dist/flexsearch.bundle.debug.js"}},"browser":{"flexsearch":"./dist/flexsearch.bundle.module.min.mjs","flexsearch/debug":"./dist/flexsearch.bundle.module.debug.mjs","dist/flexsearch.bundle.min.js":"./dist/flexsearch.bundle.min.js","dist/flexsearch.bundle.module.min.js":"./dist/flexsearch.bundle.module.min.mjs","dist/flexsearch.bundle.module.min.mjs":"./dist/flexsearch.bundle.module.min.mjs","worker_threads":false,"path":false,"clickhouse":false,"mongodb":false,"pg-promise":false,"redis":false,"sqlite3":false},"scripts":{"build":"npm run build:bundle && npm run build:bundle:debug && exit 0","build:bundle":"node task/build RELEASE=bundle DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false","build:bundle:debug":"node task/build RELEASE=bundle DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:compact":"node task/build RELEASE=compact DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:compact:debug":"node task/build RELEASE=compact DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:light":"node task/build RELEASE=light DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:light:debug":"node task/build RELEASE=light DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:es5":"node task/build RELEASE=es5 DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=true SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false LANGUAGE_OUT=ECMASCRIPT5_STRICT","build:es5:debug":"node task/build RELEASE=es5 DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=true SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT LANGUAGE_OUT=ECMASCRIPT5_STRICT","build:lang":"node task/build RELEASE=lang","build:db":"npx rollup tmp/db/indexeddb/index.js --file dist/db/indexeddb/index.cjs --format cjs && npx rollup tmp/db/postgres/index.js --file dist/db/postgres/index.cjs --format cjs && npx rollup tmp/db/sqlite/index.js --file dist/db/sqlite/index.cjs --format cjs && npx rollup tmp/db/mongodb/index.js --file dist/db/mongodb/index.cjs --format cjs && npx rollup tmp/db/redis/index.js --file dist/db/redis/index.cjs --format cjs && npx rollup tmp/db/clickhouse/index.js --file dist/db/clickhouse/index.cjs --format cjs","build:module":"node task/babel && exit 0","build:module:debug":"node task/babel DEBUG=true && exit 0","build:module:min":"node task/babel RELEASE=min && exit 0","build:module:bundle":"node task/build RELEASE=bundle.module DEBUG=false PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false","build:module:bundle:debug":"node task/build RELEASE=bundle.module DEBUG=true PROFILER=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=true SUPPORT_RESOLVER=true SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=true SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:module:compact":"node task/build RELEASE=compact.module DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:module:compact:debug":"node task/build RELEASE=compact.module DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=true SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:module:light":"node task/build RELEASE=light.module DEBUG=false PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false","build:module:light:debug":"node task/build RELEASE=light.module DEBUG=true PROFILER=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_CHARSET=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_STORE=false SUPPORT_TAGS=false SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=false SUPPORT_DOCUMENT=false POLYFILL=false SUPPORT_PERSISTENT=false SUPPORT_RESOLVER=false SUPPORT_HIGHLIGHTING=false SUPPORT_KEYSTORE=false SUPPORT_COMPRESSION=false FORMATTING=PRETTY_PRINT","build:all":"npm run build:bundle && npm run build:bundle:debug && npm run build:light && npm run build:light:debug && npm run build:compact && npm run build:compact:debug && npm run build:module:bundle && npm run build:module:bundle:debug && npm run build:module:light && npm run build:module:light:debug && npm run build:module:compact && npm run build:module:compact:debug && npm run build:es5 && npm run build:es5:debug && npm run build:lang && npm run build:module && npm run build:module:debug && npm run build:module:min && npm run build:db","build:custom":"node task/build RELEASE=custom","test":"mocha test/*.js --exit","test:coverage":"c8 -c test/.c8rc.json mocha test/*.js --exit","test:keystore":"set NODE_OPTIONS=--max-old-space-size=16000 && c8 -c test/.c8rc.json mocha test/keystore.js --exit","test:db":"c8 -c test/.c8rc.json mocha test/persistent.*.js --exit","test:all":"npx mocha test/*.js --exit module/bundle && npx mocha test/*.js --exit module-debug/bundle && npx mocha test/*.js --exit module-min/bundle && npx mocha test/*.js --exit flexsearch.bundle.debug && npx mocha test/*.js --exit flexsearch.bundle.min && npx mocha test/*.js --exit flexsearch.bundle.module.debug && npx mocha test/*.js --exit flexsearch.bundle.module.min && npx mocha test/*.js --exit flexsearch.compact.debug && npx mocha test/*.js --exit flexsearch.compact.min && npx mocha test/*.js --exit flexsearch.compact.module.debug && npx mocha test/*.js --exit flexsearch.compact.module.min && npx mocha test/*.js --exit flexsearch.es5.debug && npx mocha test/*.js --exit flexsearch.es5.min && npx mocha test/*.js --exit flexsearch.light.debug && npx mocha test/*.js --exit flexsearch.light.min && npx mocha test/*.js --exit flexsearch.light.module.debug && npx mocha test/*.js --exit flexsearch.light.module.min","release":"npm version --no-git-tag-version patch && npm run build:all && npm run test:all"},"files":["dist/**","src/**","task/**","index.d.ts","README.md","CHANGELOG.md","LICENSE"],"devDependencies":{"babel-cli":"^6.26.0","babel-plugin-conditional-compile":"^0.0.5","babel-plugin-minify-constant-folding":"^0.5.0","babel-plugin-minify-dead-code-elimination":"^0.5.2","babel-plugin-minify-flip-comparisons":"^0.4.3","babel-plugin-minify-guarded-expressions":"^0.4.4","babel-plugin-minify-infinity":"^0.4.3","babel-plugin-minify-mangle-names":"^0.5.1","babel-plugin-minify-replace":"^0.5.0","babel-plugin-minify-simplify":"^0.5.1","babel-plugin-minify-type-constructors":"^0.4.3","babel-plugin-transform-member-expression-literals":"^6.9.4","babel-plugin-transform-merge-sibling-variables":"^6.9.5","babel-plugin-transform-minify-booleans":"^6.9.4","babel-plugin-transform-property-literals":"^6.9.4","babel-plugin-transform-simplify-comparison-operators":"^6.9.4","babel-plugin-transform-undefined-to-void":"^6.9.4","c8":"^10.1.3","chai":"^5.2.0","clickhouse":"^2.6.0","google-closure-compiler":"^20250520.0.0","mocha":"^11.1.0","mongodb":"^6.13.0","pg-promise":"^11.13.0","redis":"^5.1.0","rollup":"^4.35.0","sqlite3":"^5.1.7"},"funding":[{"type":"github","url":"https://github.com/ts-thomas"},{"type":"paypal","url":"https://www.paypal.com/donate/?hosted_button_id=GEVR88FC9BWRW"},{"type":"opencollective","url":"https://opencollective.com/flexsearch"},{"type":"patreon","url":"https://patreon.com/user?u=96245532"},{"type":"liberapay","url":"https://liberapay.com/ts-thomas"}],"_lastModified":"2026-02-27T08:23:50.887Z"}
@@ -1 +1 @@
1
- {"name":"fs-extra","version":"9.1.0","description":"fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.","engines":{"node":">=10"},"homepage":"https://github.com/jprichardson/node-fs-extra","repository":{"type":"git","url":"https://github.com/jprichardson/node-fs-extra"},"keywords":["fs","file","file system","copy","directory","extra","mkdirp","mkdir","mkdirs","recursive","json","read","write","extra","delete","remove","touch","create","text","output","move","promise"],"author":"JP Richardson <jprichardson@gmail.com>","license":"MIT","dependencies":{"at-least-node":"^1.0.0","graceful-fs":"^4.2.0","jsonfile":"^6.0.1","universalify":"^2.0.0"},"devDependencies":{"coveralls":"^3.0.0","klaw":"^2.1.1","klaw-sync":"^3.0.2","minimist":"^1.1.1","mocha":"^5.0.5","nyc":"^15.0.0","proxyquire":"^2.0.1","read-dir-files":"^0.1.1","standard":"^14.1.0"},"main":"./lib/index.js","files":["lib/","!lib/**/__tests__/"],"scripts":{"full-ci":"npm run lint && npm run coverage","coverage":"nyc -r lcovonly npm run unit","coveralls":"coveralls < coverage/lcov.info","lint":"standard","test-find":"find ./lib/**/__tests__ -name *.test.js | xargs mocha","test":"npm run lint && npm run unit","unit":"node test.js"},"_lastModified":"2026-02-25T16:52:51.524Z"}
1
+ {"name":"fs-extra","version":"9.1.0","description":"fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.","engines":{"node":">=10"},"homepage":"https://github.com/jprichardson/node-fs-extra","repository":{"type":"git","url":"https://github.com/jprichardson/node-fs-extra"},"keywords":["fs","file","file system","copy","directory","extra","mkdirp","mkdir","mkdirs","recursive","json","read","write","extra","delete","remove","touch","create","text","output","move","promise"],"author":"JP Richardson <jprichardson@gmail.com>","license":"MIT","dependencies":{"at-least-node":"^1.0.0","graceful-fs":"^4.2.0","jsonfile":"^6.0.1","universalify":"^2.0.0"},"devDependencies":{"coveralls":"^3.0.0","klaw":"^2.1.1","klaw-sync":"^3.0.2","minimist":"^1.1.1","mocha":"^5.0.5","nyc":"^15.0.0","proxyquire":"^2.0.1","read-dir-files":"^0.1.1","standard":"^14.1.0"},"main":"./lib/index.js","files":["lib/","!lib/**/__tests__/"],"scripts":{"full-ci":"npm run lint && npm run coverage","coverage":"nyc -r lcovonly npm run unit","coveralls":"coveralls < coverage/lcov.info","lint":"standard","test-find":"find ./lib/**/__tests__ -name *.test.js | xargs mocha","test":"npm run lint && npm run unit","unit":"node test.js"},"_lastModified":"2026-02-27T08:23:49.804Z"}