@langchain/google-webauth 0.0.15 → 0.0.17

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 +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-webauth",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "Web-based authentication support for Google services",
5
5
  "type": "module",
6
6
  "engines": {
@@ -14,7 +14,8 @@
14
14
  },
15
15
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-webauth/",
16
16
  "scripts": {
17
- "build": "yarn run build:deps && yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts",
17
+ "build": "yarn turbo:command build:internal --filter=@langchain/google-webauth",
18
+ "build:internal": "yarn lc-build:v2 --create-entrypoints --pre --tree-shaking",
18
19
  "build:deps": "yarn run turbo:command build --filter=@langchain/google-common",
19
20
  "build:esm": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist/ && rm -rf dist/tests dist/**/tests",
20
21
  "build:cjs": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist-cjs/ -p tsconfig.cjs.json && yarn move-cjs-to-dist && rm -rf dist-cjs",
@@ -24,7 +25,7 @@
24
25
  "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
25
26
  "lint": "yarn lint:eslint && yarn lint:dpdm",
26
27
  "lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
27
- "clean": "rm -rf dist/ && NODE_OPTIONS=--max-old-space-size=4096 yarn lc-build --config ./langchain.config.js --create-entrypoints --pre",
28
+ "clean": "rm -rf .turbo dist/",
28
29
  "prepack": "yarn build",
29
30
  "test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
30
31
  "test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
@@ -39,13 +40,13 @@
39
40
  "author": "LangChain",
40
41
  "license": "MIT",
41
42
  "dependencies": {
42
- "@langchain/core": ">0.1.56 <0.3.0",
43
- "@langchain/google-common": "~0.0.15",
43
+ "@langchain/core": ">0.1.56 <0.3.0",
44
+ "@langchain/google-common": "~0.0.17",
44
45
  "web-auth-library": "^1.0.3"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@jest/globals": "^29.5.0",
48
- "@langchain/scripts": "~0.0",
49
+ "@langchain/scripts": "~0.0.14",
49
50
  "@swc/core": "^1.3.90",
50
51
  "@swc/jest": "^0.2.29",
51
52
  "@tsconfig/recommended": "^1.0.3",