mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-23 01:26:57 -04:00
5b98e5c257
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
97 lines
3.1 KiB
JSON
97 lines
3.1 KiB
JSON
{
|
|
"name": "@langchain/langgraph-checkpoint-validation",
|
|
"version": "1.0.6",
|
|
"description": "Library for validating LangGraph checkpoint saver implementations.",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/langchain-ai/langgraphjs.git",
|
|
"directory": "libs/checkpoint-validation"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn turbo:command build:internal --filter=@langchain/langgraph-checkpoint-validation",
|
|
"build:internal": "yarn workspace @langchain/build compile @langchain/langgraph-checkpoint-validation && cp src/runner.ts dist/runner.ts",
|
|
"clean": "rm -rf dist/ dist-cjs/ .turbo/",
|
|
"lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
|
|
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
"lint": "yarn lint:eslint && yarn lint:dpdm",
|
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
|
|
"prepublish": "yarn build",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"test:int": "vitest run --mode int",
|
|
"format": "prettier --config .prettierrc --write \"src\"",
|
|
"format:check": "prettier --config .prettierrc --check \"src\""
|
|
},
|
|
"author": "LangChain",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"vitest": "^3.2.4",
|
|
"yargs": "^17.7.2",
|
|
"zod": "^3.25.76 || ^4"
|
|
},
|
|
"peerDependencies": {
|
|
"@langchain/core": "^1.0.1",
|
|
"@langchain/langgraph-checkpoint": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@langchain/langgraph-checkpoint": "workspace:*",
|
|
"@langchain/langgraph-checkpoint-mongodb": "workspace:*",
|
|
"@langchain/langgraph-checkpoint-postgres": "workspace:*",
|
|
"@langchain/langgraph-checkpoint-redis": "workspace:*",
|
|
"@langchain/langgraph-checkpoint-sqlite": "workspace:*",
|
|
"@langchain/scripts": ">=0.1.3 <0.2.0",
|
|
"@testcontainers/mongodb": "^11.0.3",
|
|
"@testcontainers/postgresql": "^11.0.3",
|
|
"@tsconfig/recommended": "^1.0.3",
|
|
"@types/uuid": "^10",
|
|
"@types/yargs": "^17.0.33",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"better-sqlite3": "^11.7.0",
|
|
"dotenv": "^16.3.1",
|
|
"dpdm": "^3.12.0",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"mongodb": "^6.21.0",
|
|
"pg": "^8.12.0",
|
|
"prettier": "^2.8.3",
|
|
"rollup": "^4.37.0",
|
|
"typescript": "^4.9.5 || ^5.4.5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"input": "./src/index.ts",
|
|
"typedoc": "./src/index.ts",
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"bin": {
|
|
"validate-checkpointer": "./bin/cli.js"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
]
|
|
}
|