{
  "name": "@adminforth/agent",
  "version": "2.7.5",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "homepage": "https://adminforth.dev/docs/tutorial/Plugins/agent/",
  "repository": {
    "type": "git",
    "url": "https://github.com/devforth/adminforth-agent.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc && rsync -av --exclude 'node_modules' custom dist/",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
  },
  "keywords": [
    "adminforth",
    "ai-agent",
    "tool-calling",
    "chat-ui",
    "langgraph",
    "llm",
    "session-memory"
  ],
  "author": "DevForth (https://devforth.io)",
  "license": "MIT",
  "description": "AI agent plugin for AdminForth with tool-based workflows and persistent chat sessions",
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "latest",
    "adminforth": "^3.8.2",
    "jest": "^30.3.0",
    "semantic-release": "^24.2.1",
    "semantic-release-slack-bot": "^4.0.2",
    "ts-jest": "^29.4.6",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "@langchain/core": "1.2.5",
    "@langchain/langgraph": "1.2.8",
    "@langchain/langgraph-checkpoint": "1.0.1",
    "dayjs": "^1.11.20",
    "langchain": "1.3.3",
    "multer": "^2.1.1",
    "vue-i18n": "^11.4.0",
    "yaml": "^2.8.3",
    "zod": "^4.3.6"
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github",
      [
        "semantic-release-slack-bot",
        {
          "packageName": "@adminforth/agent",
          "notifyOnSuccess": true,
          "notifyOnFail": true,
          "slackIcon": ":package:",
          "markdownReleaseNotes": true
        }
      ]
    ]
  },
  "branches": [
    "main",
    {
      "name": "next",
      "prerelease": true
    }
  ],
  "peerDependencies": {
    "adminforth": "^3.8.2"
  }
}
