-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "gpt-shell",
"version": "2.0.0",
"description": "",
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "yarn rimraf ./lib/ && yarn tsc && echo build complete",
"start": "pm2 start ./lib/index.js --name GPT-Shell && pm2 save && pm2 logs",
"stop": "pm2 stop all",
"start-replit": "yarn node ./lib/index.js",
"test": "vitest run",
"vitest": "vitest"
},
"keywords": [
"typescript"
],
"files": [
"lib/*",
"src/*"
],
"types": "lib/index.d.ts",
"main": "lib/index.js",
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/pnpapi": "^0.0.2",
"@types/rimraf": "^4.0.5",
"@types/uuid": "^9.0.1",
"cross-env": "^7.0.3",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.0.4",
"vite": "^4.2.2",
"vitest": "^0.30.1"
},
"packageManager": "[email protected]",
"dependencies": {
"@firtoz/openai-wrappers": "^0.2.1",
"axios": "1.3.5",
"canvas": "^2.11.2",
"discord-interactions": "^3.3.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"gpt3-tokenizer": "^1.1.5",
"lodash": "^4.17.21",
"mongodb": "^4.12.1",
"openai": "^3.2.1",
"pinecone-client": "^1.1.0",
"pm2": "^5.3.0",
"pnpapi": "^0.0.0",
"ts-toolbelt": "^9.6.0",
"tsc": "^2.0.4",
"uuid": "^9.0.0"
}
}