{
    "name": "@defikitdotnet/public-agent-module",
    "version": "0.1.40",
    "description": "Public Agent Management Module using Agent Framework",
    "main": "./lib/cjs/index.js",
    "module": "./lib/esm/index.js",
    "types": "./lib/types/index.d.ts",
    "sideEffects": false,
    "publishConfig": {
        "access": "public"
    },
    "exports": {
        ".": {
            "types": "./lib/types/index.d.ts",
            "import": "./lib/esm/index.js",
            "require": "./lib/cjs/index.js",
            "default": "./lib/esm/index.js"
        },
        "./frontend": {
            "types": "./lib/types/components/index.d.ts",
            "import": "./lib/esm/components/index.js",
            "require": "./lib/cjs/components/index.js",
            "default": "./lib/esm/components/index.js"
        },
        "./backend": {
            "types": "./lib/types/controllers/index.d.ts",
            "import": "./lib/esm/controllers/index.js",
            "require": "./lib/cjs/controllers/index.js",
            "default": "./lib/esm/controllers/index.js"
        },
        "./models": {
            "types": "./lib/types/models/index.d.ts",
            "import": "./lib/esm/models/index.js",
            "require": "./lib/cjs/models/index.js",
            "default": "./lib/esm/models/index.js"
        },
        "./package.json": "./package.json"
    },
    "files": [
        "lib",
        "README.md"
    ],
    "scripts": {
        "backend": "cross-env NODE_ENV=backend ts-node-dev --project tsconfig.backend.json --respawn --transpile-only src/index.ts",
        "frontend": "next dev -p 3002",
        "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types && next build",
        "build:esm": "tsc -p tsconfig.esm.json",
        "build:cjs": "tsc -p tsconfig.cjs.json",
        "build:types": "tsc -p tsconfig.types.json",
        "start": "next start",
        "lint": "eslint . --ext .ts,.tsx",
        "clean": "rimraf lib"
    },
    "dependencies": {
        "@defikitdotnet/agent-framework-backend": "0.1.1",
        "@defikitdotnet/agent-framework-core": "0.1.1",
        "@defikitdotnet/agent-framework-frontend": "0.1.1",
        "@elizaos/adapter-sqlite": "0.25.6-alpha.1",
        "tailwindcss-animate": "^1.0.7",
        "@elizaos/core": "^0.25.9",
        "@google/generative-ai": "^0.2.1",
        "@privy-io/server-auth": "1.19.0",
        "@radix-ui/themes": "^3.2.1",
        "axios": "^1.8.2",
        "better-sqlite3": "11.6.0",
        "cors": "^2.8.5",
        "dotenv": "^16.4.0",
        "express": "^4.18.2",
        "framer-motion": "^12.6.0",
        "lucide-react": "^0.484.0",
        "next": "^14.0.0",
        "react": "^18.2.0",
        "react-dom": "^18.2.0",
        "uuid": "^10.0.0"
    },
    "devDependencies": {
        "@types/better-sqlite3": "^7.6.12",
        "@types/cors": "^2.8.13",
        "@types/express": "^4.17.17",
        "@types/node": "^18.15.3",
        "@types/postcss-load-config": "^3.0.1",
        "@types/react": "^18.2.0",
        "@types/react-dom": "^18.2.0",
        "@types/uuid": "^10.0.0",
        "@typescript-eslint/eslint-plugin": "^5.59.0",
        "@typescript-eslint/parser": "^5.59.0",
        "autoprefixer": "^10.4.21",
        "cross-env": "^7.0.3",
        "eslint": "^8.38.0",
        "eslint-plugin-react": "^7.32.2",
        "eslint-plugin-react-hooks": "^4.6.0",
        "postcss": "^8.5.3",
        "rimraf": "^5.0.0",
        "tailwindcss": "^3.4.17",
        "ts-node": "^10.9.1",
        "ts-node-dev": "^2.0.0",
        "typescript": "^5.0.0"
    }
}
