-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
37 lines (37 loc) · 835 Bytes
/
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
{
"name": "autopilot",
"version": "1.0.0",
"description": "",
"main": "ui.js",
"scripts": {
"test": "npm-run-all --sequential unit-test e2e-test",
"unit-test": "npx jest",
"e2e-test": "node benchmarks/yellow_to_red.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@dqbd/tiktoken": "^1.0.3",
"axios": "^1.3.6",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"dotenv": "^16.0.3",
"fast-glob": "^3.2.12",
"isbinaryfile": "^5.0.0",
"langchain": "^0.0.51",
"line-diff": "^2.1.1",
"openai": "^3.2.1",
"prompts": "^2.4.2",
"readline-sync": "^1.4.10",
"simple-git": "^3.17.0",
"sqlite3": "^5.1.6",
"word-count": "^0.2.2",
"yargs": "^17.7.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=18.0.0"
}
}