-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "chatgpt-wrapper",
"description": "NodeJS ChatGPT API wrapper",
"repository": "https://github.com/TABmk/chatgpt-wrapper.git",
"homepage": "https://github.com/TABmk/chatgpt-wrapper.git",
"bugs": "https://github.com/TABmk/chatgpt-wrapper/issues",
"version": "1.1.6",
"author": "TAB_mk <tabmk.contact@gmail.com>",
"license": "MIT",
"keywords": [
"openai",
"chatgpt",
"chat-gpt",
"gpt",
"gpt3",
"ai",
"chatbot"
],
"scripts": {
"build": "tsc --project tsconfig.eslint.json",
"start": "yarn build && node ./build/index.js",
"dev": "nodemon",
"lint": "eslint",
"minify": "minify ./index.js > ./index.min && mv ./index.min ./index.js",
"npm-size": "yarn pack -s && echo \"📈 Size: $(wc -c < $(ls ./*.tgz))b\" && rm -rf ./*.tgz"
},
"main": "index.js",
"types": "index.d.ts",
"devDependencies": {
"@types/node": "18.11.18",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-plugin-import": "2.25.2",
"minify": "^9.2.0",
"nodemon": "2.0.20",
"typescript": "4.9.4"
},
"dependencies": {
"node-fetch": "2"
}
}