-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "babyagi",
"version": "0.1.0",
"description": "BabyAGI in Clojurescript, like every AI study should be in.",
"main": "target/main.js",
"author": "FIXME <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/FIXME/babyagi"
},
"directories": {
"bin": "bin",
"doc": "docs",
"lib": "lib",
"src": "src"
},
"bin": {
"babyagi": "bin/babyagi"
},
"scripts": {
"build": "./scripts/build",
"init": "npm install && npx shadow-cljs watch app",
"repl": "npx shadow-cljs cljs-repl app",
"start": "npx shadow-cljs watch app",
"test": "npx shadow-cljs compile test"
},
"dependencies": {
"@pinecone-database/pinecone": "^0.0.12",
"blessed": "^0.1.81",
"create-react-class": "^15.6.3",
"openai": "^3.2.1",
"react": "^16.8.0",
"react-blessed": "^0.6.2",
"react-blessed-contrib": "^0.2.1",
"react-dom": "^16.8.0"
},
"devDependencies": {
"loose-envify": "^1.4.0",
"shadow-cljs": "^2.7.24",
"source-map-support": "^0.5.10",
"ws": "^6.1.2"
}
}