Scribbler310's picture
feat: enhance dashboard
c2b7eb3 verified
{
"name": "@langchain/google-genai",
"version": "2.1.30",
"description": "Google Generative AI integration for LangChain.js",
"author": "LangChain",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git@github.com:langchain-ai/langchainjs.git"
},
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-google-genai/",
"dependencies": {
"@google/generative-ai": "^0.24.0"
},
"peerDependencies": {
"@langchain/core": "^1.1.43"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"dotenv": "^17.4.0",
"dpdm": "^3.14.0",
"hnswlib-node": "^3.0.0",
"typescript": "~5.8.3",
"vitest": "^4.1.2",
"zod": "^3.25.76",
"@langchain/core": "^1.1.43",
"@langchain/standard-tests": "0.0.23",
"@langchain/tsconfig": "0.0.1"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"input": "./src/index.ts",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"module": "./dist/index.js",
"scripts": {
"build": "turbo build:compile --filter @langchain/google-genai --output-logs new-only",
"build:compile": "tsdown",
"clean": "rm -rf .turbo dist/",
"test": "vitest run",
"test:watch": "vitest",
"test:single": "vitest run",
"test:int": "vitest run --mode int",
"test:standard:unit": "vitest run --mode standard-unit",
"test:standard:int": "vitest run --mode standard-int",
"test:standard": "pnpm test:standard:unit && pnpm test:standard:int",
"typegen": "pnpm run typegen:profiles",
"typegen:profiles": "pnpm --filter @langchain/model-profiles make --config profiles.toml"
}
}