-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.52 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
{
"name": "micro-agi",
"version": "0.0.0-alpha.28",
"type": "module",
"license": "MIT",
"module": "./src/index.js",
"scripts": {
"typecheck": "tsc",
"run:create-article": "bun run typecheck && bun run ./src/examples/team/create-article.tsx",
"run:search-internet": "bun run typecheck && bun run ./src/examples/team/search-internet.tsx",
"run:search-internet:debug": "bun run typecheck && AIJSX_LOG=debug bun run ./src/examples/team/search-internet.tsx | bunx pino-pretty",
"run:write-file:debug": "bun run typecheck && AIJSX_LOG=debug bun run ./src/examples/team/write-file.tsx | bunx pino-pretty",
"run:create-article:debug": "bun run typecheck && AIJSX_LOG=debug bun run ./src/examples/team/create-article.tsx",
"build": "rm -rf dist && bun run typecheck && cp tsconfig.json dist/ && cp package.json dist/",
"build:publish": "bun run build && npm publish -p ./dist",
"test": "jest"
},
"dependencies": {
"@langchain/community": "^0.0.17",
"jsdom": "^24.0.0",
"langchain": "^0.1.3",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"react": "^18.2.0",
"type-fest": "^4.10.1"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.1",
"@types/bun": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20.3.1",
"@types/react": "^18.2.48",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
},
"peerDependencies": {
"ai-jsx": "0.29.0"
}
}