@langchain/google-common 0.0.0

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 ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@langchain/google-common",
3
+ "version": "0.0.0",
4
+ "description": "Core types and classes for Google services.",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=18"
8
+ },
9
+ "main": "./index.js",
10
+ "types": "./index.d.ts",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git@github.com:langchain-ai/langchainjs.git"
14
+ },
15
+ "scripts": {
16
+ "build": "yarn run build:deps && yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts",
17
+ "build:deps": "yarn run turbo:command build --filter=@langchain/core",
18
+ "build:esm": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist/ && rm -rf dist/tests dist/**/tests",
19
+ "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",
20
+ "build:watch": "yarn create-entrypoints && tsc --outDir dist/ --watch",
21
+ "build:scripts": "yarn create-entrypoints && yarn check-tree-shaking",
22
+ "lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
23
+ "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
24
+ "lint": "yarn lint:eslint && yarn lint:dpdm",
25
+ "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
+ "prepack": "yarn build",
28
+ "test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
29
+ "test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
30
+ "test:single": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
31
+ "test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
32
+ "format": "prettier --config .prettierrc --write \"src\"",
33
+ "format:check": "prettier --config .prettierrc --check \"src\"",
34
+ "move-cjs-to-dist": "yarn lc-build --config ./langchain.config.js --move-cjs-dist",
35
+ "create-entrypoints": "yarn lc-build --config ./langchain.config.js --create-entrypoints",
36
+ "check-tree-shaking": "yarn lc-build --config ./langchain.config.js --tree-shaking"
37
+ },
38
+ "author": "LangChain",
39
+ "license": "MIT",
40
+ "dependencies": {
41
+ "@langchain/core": "~0.1.1"
42
+ },
43
+ "devDependencies": {
44
+ "@jest/globals": "^29.5.0",
45
+ "@langchain/scripts": "^0.0.2",
46
+ "@swc/core": "^1.3.90",
47
+ "@swc/jest": "^0.2.29",
48
+ "@tsconfig/recommended": "^1.0.3",
49
+ "@typescript-eslint/eslint-plugin": "^6.12.0",
50
+ "@typescript-eslint/parser": "^6.12.0",
51
+ "dotenv": "^16.3.1",
52
+ "dpdm": "^3.12.0",
53
+ "eslint": "^8.33.0",
54
+ "eslint-config-airbnb-base": "^15.0.0",
55
+ "eslint-config-prettier": "^8.6.0",
56
+ "eslint-plugin-import": "^2.27.5",
57
+ "eslint-plugin-no-instanceof": "^1.0.1",
58
+ "eslint-plugin-prettier": "^4.2.1",
59
+ "jest": "^29.5.0",
60
+ "jest-environment-node": "^29.6.4",
61
+ "prettier": "^2.8.3",
62
+ "rollup": "^4.5.2",
63
+ "ts-jest": "^29.1.0",
64
+ "typescript": "<5.2.0"
65
+ },
66
+ "publishConfig": {
67
+ "access": "public"
68
+ },
69
+ "exports": {
70
+ ".": {
71
+ "types": "./index.d.ts",
72
+ "import": "./index.js",
73
+ "require": "./index.cjs"
74
+ },
75
+ "./package.json": "./package.json"
76
+ },
77
+ "files": [
78
+ "dist/",
79
+ "index.cjs",
80
+ "index.js",
81
+ "index.d.ts"
82
+ ]
83
+ }