@langchain/google-common 0.0.0 → 0.0.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-common",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "Core types and classes for Google services.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -12,6 +12,7 @@
12
12
  "type": "git",
13
13
  "url": "git@github.com:langchain-ai/langchainjs.git"
14
14
  },
15
+ "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-common/",
15
16
  "scripts": {
16
17
  "build": "yarn run build:deps && yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts",
17
18
  "build:deps": "yarn run turbo:command build --filter=@langchain/core",
@@ -23,7 +24,7 @@
23
24
  "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
24
25
  "lint": "yarn lint:eslint && yarn lint:dpdm",
25
26
  "lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
26
- "clean": "rm -rf dist/ && NODE_OPTIONS=--max-old-space-size=4096 yarn create-entrypoints -- --pre",
27
+ "clean": "rm -rf dist/ && NODE_OPTIONS=--max-old-space-size=4096 yarn lc-build --config ./langchain.config.js --create-entrypoints --pre",
27
28
  "prepack": "yarn build",
28
29
  "test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
29
30
  "test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
@@ -42,7 +43,7 @@
42
43
  },
43
44
  "devDependencies": {
44
45
  "@jest/globals": "^29.5.0",
45
- "@langchain/scripts": "^0.0.2",
46
+ "@langchain/scripts": "~0.0",
46
47
  "@swc/core": "^1.3.90",
47
48
  "@swc/jest": "^0.2.29",
48
49
  "@tsconfig/recommended": "^1.0.3",
@@ -59,6 +60,7 @@
59
60
  "jest": "^29.5.0",
60
61
  "jest-environment-node": "^29.6.4",
61
62
  "prettier": "^2.8.3",
63
+ "release-it": "^15.10.1",
62
64
  "rollup": "^4.5.2",
63
65
  "ts-jest": "^29.1.0",
64
66
  "typescript": "<5.2.0"
@@ -68,7 +70,11 @@
68
70
  },
69
71
  "exports": {
70
72
  ".": {
71
- "types": "./index.d.ts",
73
+ "types": {
74
+ "import": "./index.d.ts",
75
+ "require": "./index.d.cts",
76
+ "default": "./index.d.ts"
77
+ },
72
78
  "import": "./index.js",
73
79
  "require": "./index.cjs"
74
80
  },
@@ -78,6 +84,7 @@
78
84
  "dist/",
79
85
  "index.cjs",
80
86
  "index.js",
81
- "index.d.ts"
87
+ "index.d.ts",
88
+ "index.d.cts"
82
89
  ]
83
90
  }