{
  "name": "agentis-framework",
  "version": "0.2.0",
  "description": "A powerful framework for building autonomous AI agents with memory, planning, and platform connectors",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "start": "node dist/index.js",
    "dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
    "build": "tsc",
    "test": "jest",
    "lint": "eslint 'src/**/*.{js,ts}'",
    "format": "prettier --write 'src/**/*.{js,ts}'",
    "prepublishOnly": "npm run build",
    "example": "ts-node examples/discord-crypto-researcher-bot.ts",
    "test-kb": "ts-node scripts/test-knowledge-chunks.ts",
    "test-brave": "ts-node scripts/test-brave-search.ts",
    "goal-agent": "ts-node examples/autonomous-goal-agent.ts"
  },
  "keywords": [
    "ai",
    "agents",
    "autonomous",
    "anthropic",
    "claude",
    "llm",
    "framework",
    "discord",
    "twitter",
    "memory",
    "planning",
    "agentis"
  ],
  "homepage": "https://github.com/agentislabs/agentis-framework",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agentislabs/agentis-framework.git"
  },
  "bugs": {
    "url": "https://github.com/agentislabs/agentis-framework/issues"
  },
  "author": "Thomas Faulds",
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.38.0",
    "@pinecone-database/pinecone": "^5.0.2",
    "@tavily/core": "^0.3.1",
    "@types/node": "^22.13.5",
    "agent-twitter-client": "^0.0.18",
    "axios": "^1.8.1",
    "discord.js": "^14.18.0",
    "dotenv": "^16.4.7",
    "node-fetch": "^2.6.7",
    "openai": "^4.85.4",
    "puppeteer": "^24.3.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@types/dotenv": "^6.1.1",
    "@types/node-fetch": "^2.6.4",
    "@types/puppeteer": "^5.4.7",
    "@types/uuid": "^10.0.0",
    "nodemon": "^3.1.9",
    "tsconfig-paths": "^4.2.0", 
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0"
  }
}
