1+ {
2+ "name" : " @langchain/google" ,
3+ "version" : " 1.0.0" ,
4+ "description" : " Google integrations for LangChain.js" ,
5+ "author" : " LangChain" ,
6+ "license" : " MIT" ,
7+ "type" : " module" ,
8+ "engines" : {
9+ "node" : " >=20"
10+ },
11+ "repository" : {
12+ "type" : " git" ,
13+ "url" :
" [email protected] :langchain-ai/langchainjs.git" ,
14+ "directory" : " libs/providers/langchain-google"
15+ },
16+ "scripts" : {
17+ "build" : " pnpm --filter @langchain/build compile @langchain/google" ,
18+ "lint:eslint" : " eslint --cache src/" ,
19+ "lint:dpdm" : " dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/**/*.ts" ,
20+ "lint" : " pnpm lint:eslint && pnpm lint:dpdm" ,
21+ "lint:fix" : " pnpm lint:eslint --fix && pnpm lint:dpdm" ,
22+ "clean" : " rm -rf .turbo dist/" ,
23+ "test" : " vitest run" ,
24+ "test:watch" : " vitest" ,
25+ "test:int" : " vitest run --mode int" ,
26+ "test:standard:unit" : " vitest run --mode standard-unit" ,
27+ "test:standard:int" : " vitest run --mode standard-int" ,
28+ "test:standard" : " pnpm test:standard:unit && pnpm test:standard:int" ,
29+ "format" : " prettier --config .prettierrc --write \" src\" " ,
30+ "format:check" : " prettier --config .prettierrc --check \" src\" "
31+ },
32+ "dependencies" : {
33+ "eventsource-parser" : " ^3.0.6" ,
34+ "google-auth-library" : " ^10.5.0"
35+ },
36+ "peerDependencies" : {
37+ "@langchain/core" : " ^1.0.0"
38+ },
39+ "devDependencies" : {
40+ "@langchain/core" : " workspace:*" ,
41+ "@langchain/eslint" : " workspace:*" ,
42+ "@langchain/standard-tests" : " workspace:*" ,
43+ "@tsconfig/recommended" : " ^1.0.10" ,
44+ "dpdm" : " ^3.14.0" ,
45+ "eslint" : " ^9.34.0" ,
46+ "prettier" : " ^2.8.3" ,
47+ "typescript" : " ~5.8.3" ,
48+ "vitest" : " ^3.2.4" ,
49+ "zod-to-json-schema" : " ^3.24.6"
50+ },
51+ "publishConfig" : {
52+ "access" : " public"
53+ },
54+ "exports" : {
55+ "." : {
56+ "input" : " ./src/index.ts" ,
57+ "import" : {
58+ "types" : " ./dist/index.d.ts" ,
59+ "default" : " ./dist/index.js"
60+ },
61+ "require" : {
62+ "types" : " ./dist/index.d.cts" ,
63+ "default" : " ./dist/index.cjs"
64+ }
65+ },
66+ "./node" : {
67+ "input" : " ./src/node.ts" ,
68+ "import" : {
69+ "types" : " ./dist/node.d.ts" ,
70+ "default" : " ./dist/node.js"
71+ },
72+ "require" : {
73+ "types" : " ./dist/node.d.cts" ,
74+ "default" : " ./dist/node.cjs"
75+ }
76+ }
77+ },
78+ "files" : [
79+ " dist/" ,
80+ " CHANGELOG.md" ,
81+ " README.md" ,
82+ " LICENSE"
83+ ]
84+ }
0 commit comments