@inngest/agent-kit
Version:
AgentKit is a framework for creating and orchestrating AI agents and AI workflows
75 lines • 1.91 kB
JSON
{
"name": "@inngest/agent-kit",
"version": "0.8.0",
"description": "AgentKit is a framework for creating and orchestrating AI agents and AI workflows",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"homepage": "https://github.com/inngest/agent-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/inngest/agent-kit.git"
},
"keywords": [
"inngest",
"agent",
"ai"
],
"author": "Inngest Inc. <hello@inngest.com>",
"license": "Apache-2.0",
"typings": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
}
},
"./server": {
"import": "./dist/server.js",
"require": "./dist/server.cjs",
"types": {
"import": "./dist/server.d.ts",
"require": "./dist/server.d.cts"
}
}
},
"dependencies": {
"@dmitryrechkin/json-schema-to-zod": "^1.0.0",
"@inngest/ai": "0.1.2",
"@modelcontextprotocol/sdk": "^1.11.2",
"eventsource": "^3.0.2",
"express": "^4.21.1",
"inngest": "3.32.5",
"xxhashjs": "^0.2.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.1",
"@types/xxhashjs": "^0.2.4",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.8"
},
"scripts": {
"test": "vitest",
"changeset": "changeset",
"build": "tsc && tsup",
"lint": "eslint .",
"release": "pnpm run build && changeset publish",
"dev": "nodemon --watch demo -e ts --exec \"ts-node -P tsconfig-demo.json demo/index.ts\""
}
}