@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
98 lines (97 loc) • 2.52 kB
JSON
{
"name": "@xynehq/jaf",
"version": "0.1.3",
"description": "Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adk": {
"import": "./dist/adk/index.js",
"require": "./dist/adk/index.js",
"types": "./dist/adk/index.d.ts"
}
},
"typesVersions": {
"*": {
"adk": [
"dist/adk/index.d.ts"
]
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "jest",
"test:db:start": "./scripts/setup-test-db.sh",
"test:db:stop": "./scripts/teardown-test-db.sh",
"test:with-db": "npm run test:db:start && npm test; npm run test:db:stop",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "npm run build",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"a2a:example": "tsx src/a2a/examples/server-example.ts",
"a2a:client": "tsx src/a2a/examples/client-example.ts",
"a2a:dev": "tsx watch src/a2a/examples/server-example.ts"
},
"keywords": [
"ai",
"agents",
"functional",
"typescript",
"llm",
"a2a",
"agent2agent",
"protocol",
"jaf",
"adk",
"agent-development-kit"
],
"author": "Xyne HQ",
"license": "MIT",
"homepage": "https://xynehq.github.io/jaf/",
"repository": {
"type": "git",
"url": "git+https://github.com/xynehq/jaf.git"
},
"bugs": {
"url": "https://github.com/xynehq/jaf/issues"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@modelcontextprotocol/sdk": "^0.4.0",
"fastify": "^4.29.1",
"mathjs": "^14.6.0",
"openai": "^4.0.0",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.15.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv": "^17.2.1",
"eslint": "^8.0.0",
"ioredis": "^5.7.0",
"jest": "^29.0.0",
"pg": "^8.16.3",
"ts-jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}