forked from wladpaiva/aibitat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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",
"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",
"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"
}
}