forked from mayt/BrowserGPT
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 960 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
38
39
40
{
"name": "browser-gpt",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@colors/colors": "^1.5.0",
"@lifeomic/attempt": "^3.0.3",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"eslint": "8.31.0",
"hnswlib-node": "^1.4.2",
"jsdom": "^22.1.0",
"langchain": "^0.0.197-rc.0",
"node-html-parser": "^6.1.5",
"openai": "^4.20.0",
"playwright": "^1.31.2",
"prettier": "^2.8.6",
"prompt": "^1.3.0"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lint-staged": "^13.2.0",
"pretty-quick": "^3.1.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}