mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-21 16:45:24 -04:00
b1d307ab84
## Summary - Add a `detect-changes` job to the browser test workflow using `dorny/paths-filter@v3.0.2`. - Run all four framework browser jobs when `libs/sdk/**` changes or when this workflow file changes. - Run only the matching job when `libs/sdk-react`, `libs/sdk-angular`, `libs/sdk-vue`, or `libs/sdk-svelte` changes. - Keep the full matrix on `workflow_dispatch` (manual runs and CI dispatched via workflow_dispatch).
102 lines
3.2 KiB
JSON
102 lines
3.2 KiB
JSON
{
|
|
"private": true,
|
|
"packageManager": "pnpm@10.27.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:langchain-ai/langgraphjs.git"
|
|
},
|
|
"scripts": {
|
|
"build": "turbo run build:internal",
|
|
"changeset": "npx @changesets/cli@^2.29.5",
|
|
"lint": "oxlint",
|
|
"lint:fix": "oxlint --fix",
|
|
"clean": "turbo run clean",
|
|
"test": "turbo run test",
|
|
"test:int": "pnpm test:int:deps && turbo run test:int ; pnpm test:int:deps:down",
|
|
"test:int:deps": "docker compose -f int-test-deps-docker-compose.yml up -d",
|
|
"test:int:deps:down": "docker compose -f int-test-deps-docker-compose.yml down",
|
|
"test:exports:docker": "docker compose -f internal/environment_tests/docker-compose.yml up --force-recreate",
|
|
"format": "oxfmt",
|
|
"format:check": "oxfmt --check",
|
|
"release": "pnpm changeset publish"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint",
|
|
"*": "pnpm run format --no-error-on-unmatched-pattern"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.6.0",
|
|
"@swc/core": "^1.3.90",
|
|
"@tsconfig/recommended": "^1.0.3",
|
|
"@types/d3": "^7",
|
|
"@types/semver": "^7",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"cheminfo-types": "^1.4.0",
|
|
"d3": "^7.9.0",
|
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
"lint-staged": "^16.4.0",
|
|
"oxfmt": "^0.42.0",
|
|
"oxlint": "^1.55.0",
|
|
"readline": "^1.3.0",
|
|
"semver": "^7.6.3",
|
|
"tslab": "^1.0.21",
|
|
"tsx": "^4.19.3",
|
|
"turbo": "^2.9.14",
|
|
"typescript": "^4.9.5 || ^5.4.5"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@langchain/core": "^1.1.44",
|
|
"langchain": "1.4.0-dev-1777615538778",
|
|
"@examples/streaming>langchain": "1.4.0-dev-1777615538778",
|
|
"@examples/ui-react>langchain": "1.4.0-dev-1777615538778",
|
|
"@examples/ui-multimodal>langchain": "1.4.0-dev-1777615538778",
|
|
"deepagents>langchain": "1.4.0-dev-1777615538778",
|
|
"@langchain/langgraph-sdk": "workspace:*",
|
|
"@langchain/langgraph-checkpoint": "workspace:*",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"semver": "^7.0.0",
|
|
"zod": "^4.3.5",
|
|
"axios": ">=1.15.0",
|
|
"qs": ">=6.14.2",
|
|
"dompurify": ">=3.4.0",
|
|
"follow-redirects": ">=1.16.0",
|
|
"langsmith@<0.5.19": ">=0.5.19 <1",
|
|
"minimatch@<4": ">=3.1.4 <4",
|
|
"minimatch@>=5 <6": ">=5.1.8 <6",
|
|
"minimatch@>=9": ">=9.0.7",
|
|
"rollup@2": ">=4.59.0",
|
|
"handlebars": ">=4.7.9",
|
|
"path-to-regexp@>=8": ">=8.4.0",
|
|
"picomatch@<3": ">=2.3.2 <3",
|
|
"picomatch@>=4": ">=4.0.4",
|
|
"undici@<7": ">=6.24.0 <7",
|
|
"undici@>=7": ">=7.24.0 <8",
|
|
"fast-xml-parser": ">=5.5.6",
|
|
"lodash": ">=4.18.0",
|
|
"lodash-es": ">=4.18.0",
|
|
"brace-expansion@>=2 <3": ">=2.0.3 <3",
|
|
"brace-expansion@>=4": ">=5.0.5",
|
|
"yaml@>=2 <2.8.3": ">=2.8.3",
|
|
"protobufjs@>=7 <8": ">=7.5.5 <8",
|
|
"basic-ftp@>=5 <6": ">=5.3.0 <6",
|
|
"vite@>=7 <8": ">=7.3.2",
|
|
"defu@>=6 <7": ">=6.1.5 <7",
|
|
"better-sqlite3": "^12.10.0"
|
|
},
|
|
"onlyBuiltDependencies": [
|
|
"@swc/core",
|
|
"better-sqlite3",
|
|
"cpu-features",
|
|
"esbuild",
|
|
"msw",
|
|
"protobufjs",
|
|
"sharp",
|
|
"ssh2",
|
|
"zeromq"
|
|
]
|
|
}
|
|
} |