system-prompts-and-models-o.../AI_Agent_Builder_Framework/package.json
dopeuni444 020b7222da ed
2025-07-31 05:55:08 +04:00

73 lines
1.8 KiB
JSON

{
"name": "ai-agent-builder-framework",
"version": "1.0.0",
"description": "A comprehensive framework for building custom AI agents based on industry patterns",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js"
},
"keywords": [
"ai",
"agent",
"framework",
"automation",
"prompts",
"tools"
],
"author": "AI Agent Builder Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.2",
"openai": "^4.20.1",
"anthropic": "^0.7.8",
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"compression": "^1.7.4",
"morgan": "^1.10.0",
"winston": "^3.10.0",
"joi": "^17.9.2",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.6",
"node-cron": "^3.0.2",
"redis": "^4.6.8",
"mongoose": "^7.5.0",
"sqlite3": "^5.1.6",
"pg": "^8.11.3",
"mysql2": "^3.6.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.6.4",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"babel-loader": "^9.1.3",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"css-loader": "^6.8.1",
"style-loader": "^3.3.3",
"html-webpack-plugin": "^5.5.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/ai-agent-builder-framework.git"
},
"bugs": {
"url": "https://github.com/your-username/ai-agent-builder-framework/issues"
},
"homepage": "https://github.com/your-username/ai-agent-builder-framework#readme"
}