mirror of
https://github.com/langchain-ai/llmanager.git
synced 2026-07-01 20:44:01 -04:00
57 lines
1.9 KiB
JSON
57 lines
1.9 KiB
JSON
{
|
|
"name": "llmanager",
|
|
"version": "0.0.0",
|
|
"description": "Use an LLM as a manager for approval processes.",
|
|
"packageManager": "yarn@3.8.7",
|
|
"main": "src/llmanager/index.ts",
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "langgraphjs dev --port 2024 --no-browser",
|
|
"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$",
|
|
"test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.js --testTimeout 100000",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@langchain/anthropic": "^0.3.17",
|
|
"@langchain/core": "^0.3.44",
|
|
"@langchain/langgraph": "^0.2.64",
|
|
"@langchain/langgraph-sdk": "0.0.66",
|
|
"@langchain/openai": "^0.5.5",
|
|
"dotenv": "^16.4.7",
|
|
"langchain": "^0.3.21",
|
|
"langsmith": "^0.3.15",
|
|
"uuid": "^11.0.4",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.9.1",
|
|
"@jest/globals": "^29.7.0",
|
|
"@langchain/langgraph-cli": "^0.0.21",
|
|
"@tsconfig/recommended": "^1.0.7",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^22.10.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
"@typescript-eslint/parser": "^5.59.8",
|
|
"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",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|