node-agency
Version:
A node package for building AI agents
62 lines (61 loc) • 1.75 kB
JSON
{
"name": "node-agency",
"version": "0.0.15",
"description": "A node package for building AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"openai",
"ai",
"agent",
"agents",
"crewai",
"autogen",
"automation",
"rag",
"node",
"typescript",
"chatbot",
"gpt",
"parallel tool calling",
"function calling"
],
"repository": {
"type": "git",
"url": "https://github.com/lifeofcoding/node-agency.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -r ./dist/* && tsc --declaration --declarationMap --sourceMap",
"start": "tsc-watch --onSuccess \"node dist/index.js\"",
"example:quickstart": "npx ts-node examples//quickstart/index.ts",
"example:chatbot": "npx ts-node examples/chatbot/index.ts",
"example:ollama": "npx ts-node examples/ollama/index.ts",
"example:sequential": "npx ts-node examples/sequential/index.ts",
"example:claude": "npx ts-node examples/claude/index.ts",
"example:claude:chatbot": "npx ts-node examples/claude/chatbot.ts",
"npm:publish": "npm publish --access public"
},
"author": "Jimmy Rousseau (LifeOfCoding)",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.2",
"@types/pdf-parse": "^1.1.4",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.3"
},
"dependencies": {
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"ml-distance": "^4.0.1",
"openai": "^4.47.1",
"pdf-parse": "^1.1.1"
},
"exports": {
".": "./dist/index.js",
"./models/openai": "./dist/models/openai.js",
"./models/ollama": "./dist/models/ollama.js"
}
}