mirror of
https://github.com/langchain-ai/data-enrichment-js.git
synced 2026-06-30 20:28:01 -04:00
54 lines
1.9 KiB
JSON
54 lines
1.9 KiB
JSON
{
|
|
"name": "data-enrichment",
|
|
"version": "0.0.1",
|
|
"description": "A starter template for building a research agent that uses a web search tool to populate a user-provided schema.",
|
|
"main": "src/enrichment_agent/graph.ts",
|
|
"author": "William Fu-Hinthorn",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "yarn@1.22.22",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
|
|
"test:int": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint src",
|
|
"format:check": "prettier --check .",
|
|
"lint:langgraph-json": "node scripts/checkLanggraphPaths.js",
|
|
"lint:all": "yarn lint & yarn lint:langgraph-json & yarn format:check",
|
|
"test:all": "yarn test && yarn test:int && yarn lint:langgraph"
|
|
},
|
|
"dependencies": {
|
|
"@langchain/anthropic": "^0.3.21",
|
|
"@langchain/community": "^0.3.45",
|
|
"@langchain/core": "^0.3.57",
|
|
"@langchain/langgraph": "^0.3.0",
|
|
"langchain": "^0.3.27",
|
|
"langsmith": "^0.3.30",
|
|
"ts-node": "^10.9.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.9.1",
|
|
"@jest/globals": "^29.7.0",
|
|
"@tsconfig/recommended": "^1.0.7",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^20.14.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
"@typescript-eslint/parser": "^5.59.8",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|