mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-07-22 12:25:36 -04:00
cb95cd5cd1
Resolves 6 Dependabot security alerts using pnpm.overrides (Strategy C): - fast-xml-parser 5.3.4 → 5.3.6: CVE-2026-25896 (critical), CVE-2026-26278 (high) - rollup 4.57.1 → 4.59.0: CVE-2026-27606 (high) - minimatch 3.1.2 → 3.1.4: CVE-2026-26996, CVE-2026-27903, CVE-2026-27904 (all high) Also fixes broken override from PR #257 that pinned minimatch@<3.1.3 to the vulnerable version 3.1.2 instead of the fixed 3.1.4. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
2.3 KiB
JSON
69 lines
2.3 KiB
JSON
{
|
|
"name": "deepagentsjs-monorepo",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Deep Agents - a library for building controllable AI agents with LangGraph",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "pnpm --filter \"./libs/*\" --filter \"./libs/providers/*\" build",
|
|
"clean": "pnpm --filter \"./libs/*\" clean",
|
|
"typecheck": "pnpm --filter \"./libs/*\" typecheck",
|
|
"lint": "eslint libs examples",
|
|
"lint:fix": "eslint libs examples --fix",
|
|
"format": "prettier --write \"libs/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
|
|
"format:check": "prettier --check \"libs/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
|
|
"test": "pnpm format:check && pnpm lint && pnpm --filter \"./libs/*\" test",
|
|
"test:unit": "pnpm --filter \"./libs/*\" test:unit",
|
|
"test:int": "pnpm --filter \"./libs/*\" --filter \"./libs/providers/*\" test:int",
|
|
"test:watch": "pnpm --filter \"./libs/*\" test:watch",
|
|
"test:coverage": "pnpm --filter \"./libs/*\" test:coverage",
|
|
"changeset:version": "changeset version",
|
|
"release": "pnpm build && changeset publish"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/langchain-ai/deepagentsjs.git"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"agents",
|
|
"langgraph",
|
|
"langchain",
|
|
"typescript",
|
|
"llm"
|
|
],
|
|
"author": "LangChain",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/langchain-ai/deepagentsjs/issues"
|
|
},
|
|
"homepage": "https://github.com/langchain-ai/deepagentsjs#readme",
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.2",
|
|
"@changesets/cli": "^2.29.8",
|
|
"@eslint/eslintrc": "^3.3.3",
|
|
"@eslint/js": "^10.0.1",
|
|
"@tsconfig/recommended": "^1.0.13",
|
|
"eslint": "^10.0.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"globals": "^17.3.0",
|
|
"jiti": "^2.6.1",
|
|
"prettier": "^3.8.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.55.0"
|
|
},
|
|
"packageManager": "pnpm@10.29.2",
|
|
"pnpm": {
|
|
"overrides": {
|
|
"minimatch@<3.1.4": "3.1.4",
|
|
"minimatch@>=9 <10.2.1": "10.2.4",
|
|
"fast-xml-parser@>=5.0.0 <5.3.6": "5.3.6",
|
|
"rollup@>=4.0.0 <4.59.0": "4.59.0"
|
|
}
|
|
}
|
|
}
|