forked from CatWithAWand/gpt-chan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
82
83
84
85
86
{
"name": "gpt-chan",
"version": "1.0.0",
"private": true,
"description": "Talk to OpenAI's GPT-3.5 chatbot in Discord",
"author": {
"name": "Ari (CatWithAWand)",
"email": "cat.with.a.wand@gmail.com"
},
"license": "MIT",
"keywords": [
"ai",
"discord",
"bot",
"discord-bot",
"chatbot",
"chatgpt",
"gpt3",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CatWithAWand/gpt-chan.git"
},
"homepage": "https://github.com/CatWithAWand/gpt-chan#readme",
"bugs": "https://github.com/CatWithAWand/gpt-chan/issues",
"main": "dist/index.js",
"type": "module",
"scripts": {
"cm": "git-cz",
"cm:s": "git-cz -S",
"build": "tsc",
"build:analyze": "ANALYZE=true npm run build",
"dev": "dotenv -e .env.development -- nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write .",
"start:dev": "dotenv -e .env.development -- ts-node-esm src/index.ts | pino-pretty",
"start:prod": "dotenv -e .env.production -- ts-node-esm src/index.ts"
},
"dependencies": {
"bufferutil": "^4.0.7",
"chatgpt": "^2.0.5",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"erlpack": "^0.1.4",
"pino": "^8.7.0",
"puppeteer": "^19.4.0",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-adblocker": "^2.13.5",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"utf-8-validate": "^5.0.10",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"packageManager": "yarn@3.3.0",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}