mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-08-26 18:26:32 -04:00
02c1c7fa38
* chore: version packages * cr --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Hunter Lovell <hunter@hntrl.io>
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "@deepagents/evals",
|
|
"version": "0.0.7",
|
|
"private": true,
|
|
"description": "Eval harness — runner interface, profile registry, and trajectory matchers",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"clean": "rm -rf dist/ .tsdown/",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./setup": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"@langchain/anthropic": "^1.3.26",
|
|
"@langchain/core": "^1.1.38",
|
|
"@langchain/openai": "^1.4.1",
|
|
"deepagents": "workspace:*",
|
|
"langsmith": "^0.5.10",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/recommended": "^1.0.13",
|
|
"@types/node": "^25.2.3",
|
|
"@types/uuid": "^11.0.0",
|
|
"tsdown": "^0.21.4",
|
|
"typescript": "^6.0.2",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|