@langchain/google-vertexai 0.0.18 → 0.0.20

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 (1) hide show
  1. package/package.json +11 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-vertexai",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "description": "LangChain.js support for Google Vertex AI",
5
5
  "type": "module",
6
6
  "engines": {
@@ -27,10 +27,13 @@
27
27
  "lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
28
28
  "clean": "rm -rf .turbo dist/",
29
29
  "prepack": "yarn build",
30
- "test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
31
- "test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
32
- "test:single": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
33
- "test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
30
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
31
+ "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
32
+ "test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
33
+ "test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
34
+ "test:standard:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.test.ts --testTimeout 100000 --maxWorkers=50%",
35
+ "test:standard:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
36
+ "test:standard": "yarn test:standard:unit && yarn test:standard:int",
34
37
  "format": "prettier --config .prettierrc --write \"src\"",
35
38
  "format:check": "prettier --config .prettierrc --check \"src\"",
36
39
  "move-cjs-to-dist": "yarn lc-build --config ./langchain.config.js --move-cjs-dist",
@@ -41,11 +44,13 @@
41
44
  "license": "MIT",
42
45
  "dependencies": {
43
46
  "@langchain/core": ">0.1.56 <0.3.0",
44
- "@langchain/google-gauth": "~0.0.18"
47
+ "@langchain/google-gauth": "~0.0.20"
45
48
  },
46
49
  "devDependencies": {
47
50
  "@jest/globals": "^29.5.0",
51
+ "@langchain/google-common": "latest",
48
52
  "@langchain/scripts": "~0.0.14",
53
+ "@langchain/standard-tests": "0.0.0",
49
54
  "@swc/core": "^1.3.90",
50
55
  "@swc/jest": "^0.2.29",
51
56
  "@tsconfig/recommended": "^1.0.3",