mirror of
https://github.com/Mintplex-Labs/abitat.git
synced 2026-07-19 20:53:31 -04:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "aibitat",
|
|
"version": "0.0.1-beta.3",
|
|
"description": "An extensible, stateless and customizable framework for multi-agents conversation",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wladiston/abitat.git"
|
|
},
|
|
"author": {
|
|
"name": "Wlad Paiva",
|
|
"email": "desenvolvedormg@gmail.com"
|
|
},
|
|
"module": "dist/index.js",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bun build ./src/index.ts --outdir=./dist",
|
|
"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",
|
|
"chalk": "^5.3.0",
|
|
"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": {
|
|
"@inquirer/prompts": "^3.2.0",
|
|
"ai": "^2.2.14",
|
|
"debug": "^4.3.4",
|
|
"openai": "^4.11.1"
|
|
},
|
|
"nano-staged": {
|
|
"*.{js,jsx,json,yml,yaml,css,ts,tsx,md,mdx}": "prettier --write"
|
|
}
|
|
}
|