This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathpackage.json
81 lines (81 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bing-chat",
"version": "0.2.3",
"description": "Node.js client for the unofficial Bing Chat API.",
"author": "Travis Fischer <[email protected]>",
"repository": "transitive-bullshit/bing-chat",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"files": [
"build"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del build",
"prebuild": "run-s clean",
"predev": "run-s clean",
"pretest": "run-s build",
"docs": "typedoc",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"ws": "^8.13.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.3",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"del-cli": "^5.0.0",
"dotenv-safe": "^8.2.0",
"husky": "^8.0.2",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"ora": "^6.1.2",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"tsx": "^3.12.5",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"openai",
"bing",
"chat",
"search",
"sydney",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"chatbot",
"machine learning",
"conversation",
"conversational",
"ai",
"ml",
"bot"
]
}