UNPKG

agent-ai

Version:
58 lines (57 loc) 2.19 kB
{ "name": "agent-ai", "version": "0.3.53", "description": "Ai agent abstraction", "main": "domain/index.js", "dockerHubUsername": "vcalatayud", "devDependencies": { "@cucumber/cucumber": "^11.0.0", "@stryker-mutator/core": "9.0.1", "@stryker-mutator/mocha-runner": "9.0.1", "chai": "5.2.0", "mocha": "11.7.0", "uuid": "^11.0.0" }, "scripts": { "test": "npm run test-mocha && npm run test-cucumber", "test-mocha": "npm run test-doubles && npm run test-domain && npm run test-adapters && npm run test-integration", "test-domain": "mocha domain --recursive", "test-doubles": "mocha test-doubles --recursive", "test-adapters": "mocha adapters --recursive", "test-integration": "mocha test-integration --recursive", "test-api": "npm run build-api-image && CONTAINER_NAME=api-auto-test-container && mocha test-http-api --recursive", "test-lambda": "npm run build-lambda-image && CONTAINER_NAME=lambda-auto-test-container && mocha test-lambda-function --recursive", "build-lambda-image": "docker build -t lambda-test-image -f ./lambda-function/Dockerfile .", "test-mutation": "npx stryker run", "test-cucumber": "cucumber-js", "local-api": "node ./http-api/start.js", "build-api-image": "docker build -t api-test-image -f ./http-api/Dockerfile .", "api-container": "npm run build-api-image && docker run -d -p 3000:3000 --name api-test-container api-test-image", "api-container-logs": "docker logs api-test-container", "container-app": "CONTAINER_NAME=dev-api && docker-compose up -d --wait", "remove-api-container": "docker rm -f api-test-container" }, "repository": { "type": "git", "url": "git+https://github.com/unsegnor/agent-ai.git" }, "keywords": [ "ai", "chat", "gpt", "assistant" ], "author": "Víctor Calatayud Asensio", "license": "GPL-3.0-or-later", "bugs": { "url": "https://github.com/unsegnor/agent-ai#issues" }, "homepage": "https://github.com/unsegnor/agent-ai#readme", "dependencies": { "aws-sdk": "^2.1363.0", "axios": "^1.3.5", "dotenv": "^16.0.3", "express": "^5.0.0", "openai": "^3.2.1" } }