Files
John Kennedy 64c91addfe chore: apply Socket optimized package overrides (#682)
## Summary
- apply Socket Optimize curated `@socketregistry` pnpm overrides
- retain existing vulnerability-pinning overrides
- update the pnpm lockfile with the optimized dependency graph

## Validation
- `socket optimize .` completed and added 10 overrides
- `git diff --check` passed
- `CI=true sfw pnpm install --frozen-lockfile` confirmed the lockfile
was current, then could not complete because the existing
`vercel-labs/node-vfs-polyfill` GitHub tarball failed local certificate
validation (`UNABLE_TO_GET_ISSUER_CERT_LOCALLY`)
- `pnpm format:check` could not run afterward because the incomplete
reinstall left `oxfmt` unavailable
- `npm audit --package-lock-only --omit=dev` is not applicable: this
pnpm repo has no npm `package-lock.json`
2026-07-14 20:54:09 -07:00

88 lines
3.0 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": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"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"
},
"homepage": "https://docs.langchain.com/oss/javascript/deepagents",
"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"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.29.8",
"@tsconfig/recommended": "^1.0.13",
"eslint-plugin-no-instanceof": "^1.0.1",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"lint-staged": "^17.0.7",
"oxfmt": "^0.57.0",
"oxlint": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint",
"*": "pnpm run format --no-error-on-unmatched-pattern"
},
"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@>=4.0.0-beta.3 <=5.5.6": "5.5.10",
"rollup@>=4.0.0 <4.59.0": "4.59.0",
"lodash@<=4.17.23": "4.18.1",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"flatted@<3.4.2": "3.4.2",
"protobufjs@<8.0.0": "7.6.3",
"protobufjs@>=8.0.0 <8.6.0": "8.6.0",
"axios@<1.16.0": "1.16.0",
"@opentelemetry/core@<2.8.0": "2.8.0",
"js-yaml@<3.15.0": "3.15.0",
"follow-redirects@<1.16.0": "1.16.0",
"es-define-property": "npm:@socketregistry/es-define-property@^1",
"es-set-tostringtag": "npm:@socketregistry/es-set-tostringtag@^1",
"function-bind": "npm:@socketregistry/function-bind@^1",
"gopd": "npm:@socketregistry/gopd@^1",
"has-symbols": "npm:@socketregistry/has-symbols@^1",
"has-tostringtag": "npm:@socketregistry/has-tostringtag@^1",
"hasown": "npm:@socketregistry/hasown@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
"safer-buffer": "npm:@socketregistry/safer-buffer@^1",
"shell-quote": "npm:shell-quote@^1"
}
}
}