langchain 0.0.205 → 0.0.206
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.
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langchain",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.206",
|
|
4
4
|
"description": "Typescript bindings for langchain",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -859,7 +859,8 @@
|
|
|
859
859
|
"url": "git@github.com:langchain-ai/langchainjs.git"
|
|
860
860
|
},
|
|
861
861
|
"scripts": {
|
|
862
|
-
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts",
|
|
862
|
+
"build": "yarn run build:deps && yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts",
|
|
863
|
+
"build:deps": "yarn run turbo:command build --filter=@langchain/core --filter=@langchain/anthropic --filter=@langchain/openai --filter=@langchain/community --concurrency=1",
|
|
863
864
|
"build:esm": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist/ && rimraf dist/tests dist/**/tests",
|
|
864
865
|
"build:cjs": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rimraf dist-cjs",
|
|
865
866
|
"build:watch": "node scripts/create-entrypoints.js && tsc --outDir dist/ --watch",
|
|
@@ -872,10 +873,10 @@
|
|
|
872
873
|
"clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 node scripts/create-entrypoints.js pre",
|
|
873
874
|
"prepack": "yarn build",
|
|
874
875
|
"release": "release-it --only-version --config .release-it.json",
|
|
875
|
-
"test": "
|
|
876
|
-
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
|
|
877
|
-
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
|
|
878
|
-
"test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
|
|
876
|
+
"test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
|
|
877
|
+
"test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
|
|
878
|
+
"test:integration": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
|
|
879
|
+
"test:single": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
|
|
879
880
|
"format": "prettier --write \"src\"",
|
|
880
881
|
"format:check": "prettier --check \"src\""
|
|
881
882
|
},
|
|
@@ -1174,8 +1175,8 @@
|
|
|
1174
1175
|
},
|
|
1175
1176
|
"dependencies": {
|
|
1176
1177
|
"@anthropic-ai/sdk": "^0.9.1",
|
|
1177
|
-
"@langchain/community": "~0.0.
|
|
1178
|
-
"@langchain/core": "~0.1.
|
|
1178
|
+
"@langchain/community": "~0.0.4",
|
|
1179
|
+
"@langchain/core": "~0.1.1",
|
|
1179
1180
|
"@langchain/openai": "~0.0.5",
|
|
1180
1181
|
"binary-extensions": "^2.2.0",
|
|
1181
1182
|
"expr-eval": "^2.0.2",
|