{
  "name": "@matimo/core",
  "version": "0.1.7",
  "description": "Core SDK for Matimo: Framework-agnostic YAML-driven tool ecosystem for AI agents.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "packageManager": "pnpm@8.15.0",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./runtime": {
      "types": "./dist/runtime/index.d.ts",
      "default": "./dist/runtime/index.js"
    },
    "./mcp": {
      "types": "./dist/mcp/index.d.ts",
      "default": "./dist/mcp/index.js"
    }
  },
  "engines": {
    "node": ">=18.0.0",
    "pnpm": ">=8.0.0"
  },
  "keywords": [
    "ai",
    "agent",
    "tools",
    "mcp",
    "llm",
    "claude",
    "langchain",
    "crewai",
    "ai-agent",
    "langchain-tools",
    "claude-tools",
    "framework-agnostic",
    "yaml-tools",
    "agent-toolkit",
    "typescript-ai"
  ],
  "author": "Sajesh Nair <vsajeshnair@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/tallclub/matimo.git"
  },
  "homepage": "https://github.com/tallclub/matimo#readme",
  "bugs": {
    "url": "https://github.com/tallclub/matimo/issues"
  },
  "files": [
    "dist",
    "tools",
    "destructive-keywords.yaml",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@mozilla/readability": "^0.6.0",
    "axios": "^1.18.0",
    "docx": "^9.7.1",
    "dotenv": "^17.2.3",
    "glob": "^10.5.0",
    "js-yaml": "^5.2.1",
    "jsdom": "~25.0.1",
    "mammoth": "^1.12.0",
    "marked": "^15.0.12",
    "mathjs": "^15.2.0",
    "pdf-parse": "^1.1.4",
    "pdfkit": "^0.19.1",
    "turndown": "^7.2.4",
    "winston": "^3.19.0",
    "yaml": "^2.8.2",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "@aws-sdk/client-secrets-manager": ">=3.0.0",
    "node-vault": ">=0.10.0"
  },
  "peerDependenciesMeta": {
    "node-vault": {
      "optional": true
    },
    "@aws-sdk/client-secrets-manager": {
      "optional": true
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^20.3.1",
    "@commitlint/config-conventional": "^20.3.1",
    "@langchain/core": "^1.1.19",
    "@types/jest": "^30.0.0",
    "@types/jsdom": "^28.0.3",
    "@types/node": "^25.1.0",
    "@types/pdf-parse": "^1.1.5",
    "@types/pdfkit": "^0.17.6",
    "@types/turndown": "^5.0.6",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "eslint": "^9.39.2",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "langchain": "^1.2.18",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.9",
    "ts-node": "^10.9.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && tsc -p tsconfig.tools.json",
    "watch": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src test --ext .ts",
    "lint:fix": "eslint src test --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"*.json\" \"*.md\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
    "dev": "tsx src/index.ts"
  }
}