-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "edgegptjs",
"version": "1.0.9",
"description": "",
"main": "lib/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "chmod +x lib/index.js && ./lib/index.js"
},
"keywords": ["New Bing", "Bing New", "ChatGPT", "CLI"],
"author": "laizn<[email protected]>",
"repository": {
"type": "github",
"url": "https://github.com/lonelam/EdgeGPTJs"
},
"homepage": "https://github.com/lonelam/EdgeGPTJs",
"license": "ISC",
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/chalk": "^2.2.0",
"@types/node": "^18.15.11",
"@types/tough-cookie": "^4.0.2",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"argparse": "^2.0.1",
"axios": "^1.3.4",
"axios-cookiejar-support": "^4.0.6",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"rxjs": "^7.8.0",
"socks-proxy-agent": "^7.0.0",
"tough-cookie": "^4.1.2",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"files": ["lib", "cli", "docs", "README.md", "README.zh-CN.md"],
"bin":{
"edgegptjs": "lib/cli.js"
}
}