Files
deepagentsjs/libs/deepagents/package.json
T
github-actions[bot] 7f82473721 chore: version packages (#217)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-10 15:18:49 -08:00

83 lines
2.0 KiB
JSON

{
"name": "deepagents",
"version": "1.7.4",
"description": "Deep Agents - a library for building controllable AI agents with LangGraph",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist/ .tsdown/",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:unit": "vitest run",
"test:int": "vitest run --mode int",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"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",
"dependencies": {
"@langchain/core": "^1.1.19",
"@langchain/langgraph": "^1.1.3",
"fast-glob": "^3.3.3",
"langchain": "^1.2.17",
"micromatch": "^4.0.8",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@langchain/langgraph-checkpoint": "^1.0.0",
"@langchain/openai": "^1.2.3",
"@langchain/tavily": "^1.2.0",
"@tsconfig/recommended": "^1.0.13",
"@types/micromatch": "^4.0.10",
"@types/node": "^25.1.0",
"@types/uuid": "^11.0.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"dotenv": "^17.2.3",
"tsdown": "^0.20.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"vitest": "^4.0.18"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*"
]
}