forked from firtoz/GPT-Shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
46
47
48
49
50
51
52
53
54
{
"name": "gpt-shell",
"version": "2.0.0",
"description": "",
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "yarn rimraf ./lib/ && yarn tsc && echo build complete",
"start": "yarn exec forever --minUptime 1000 --spinSleepTime 1000 ./lib/index.js",
"start-replit": "yarn node --version ./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",
"@types/pnpapi": "^0",
"@types/rimraf": "^3",
"@types/uuid": "^9",
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "4.9.3",
"vite": "^4.0.0",
"vitest": "^0.25.7"
},
"packageManager": "yarn@3.3.0",
"dependencies": {
"axios": "1.1.3",
"canvas": "^2.11.0",
"discord-interactions": "^3.2.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"forever": "^4.0.3",
"gpt3-tokenizer": "^1.1.4",
"lodash": "^4.17.21",
"mongodb": "^4.12.1",
"openai": "^3.1.0",
"pinecone-client": "^1.0.1",
"pnpapi": "^0.0.0",
"ts-toolbelt": "^9.6.0",
"tsc": "^2.0.4",
"uuid": "^9.0.0"
}
}