mirror of
https://github.com/Mintplex-Labs/abitat.git
synced 2026-07-01 10:05:27 -04:00
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "aibitat",
|
|
"version": "0.0.3",
|
|
"description": "An extensible, stateless and customizable framework for multi-agents conversation",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wladiston/aibitat.git"
|
|
},
|
|
"author": {
|
|
"name": "Wlad Paiva",
|
|
"email": "desenvolvedormg@gmail.com"
|
|
},
|
|
"bin": "src/cli.ts",
|
|
"module": "dist/index.js",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./plugins": {
|
|
"import": "./dist/plugins/index.js",
|
|
"types": "./src/plugins/index.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bun run build.ts",
|
|
"format": "prettier --write .",
|
|
"prepare": "is-ci || husky install",
|
|
"typecheck": "tsc --noEmit",
|
|
"release": "bun run build && changeset publish"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.26.2",
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
|
|
"@types/debug": "^4.1.9",
|
|
"bun-types": "latest",
|
|
"husky": "^8.0.0",
|
|
"is-ci": "^3.0.1",
|
|
"nano-staged": "^0.8.0",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.8.1",
|
|
"@inquirer/prompts": "^3.2.0",
|
|
"chalk": "^5.3.0",
|
|
"debug": "^4.3.4",
|
|
"langchain": "^0.0.169",
|
|
"node-html-markdown": "^1.3.0",
|
|
"openai": "^4.11.1"
|
|
},
|
|
"nano-staged": {
|
|
"*.{js,jsx,json,yml,yaml,css,ts,tsx,md,mdx}": "prettier --write"
|
|
}
|
|
}
|