This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
92 lines (92 loc) · 2.51 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
87
88
89
90
91
92
{
"name": "gpt-turbo-cli",
"version": "5.0.1",
"description": "A CLI that interacts with the gpt-turbo library",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"lint:strict": "npm run lint -- --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"tscheck": "tsc --noEmit",
"build": "npm run lint:strict && rimraf dist && tsc -p tsconfig.build.json && copyfiles -u 1 -e \"src/**/*.tsx\" \"src/**/*.ts\" \"src/**/*\" dist",
"gpt-turbo": "nodemon",
"ig": "npm run build && npm i -g ."
},
"keywords": [
"openai",
"chatgpt",
"chat",
"gpt",
"gpt3",
"gpt-3",
"gpt3.5",
"gpt-3.5",
"gpt4",
"gpt-4",
"completion",
"chatcompletion",
"conversation",
"conversation ai",
"ai",
"ml",
"bot",
"chatbot",
"cli",
"command line interface",
"interactive",
"react",
"ink"
],
"author": "Tristan Chin <[email protected]>",
"homepage": "https://github.com/maxijonson/gpt-turbo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/maxijonson/gpt-turbo.git"
},
"bugs": {
"url": "https://github.com/maxijonson/gpt-turbo/issues"
},
"license": "MIT",
"bin": {
"gpt-turbo": "dist/index.js"
},
"directories": {
"bin": "dist"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"dotenv": "^16.0.3",
"gpt-turbo": "^5.0.1",
"gpt-turbo-plugin-stats": "^5.0.1",
"ink": "^4.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.0",
"react": "^18.2.0",
"uuid": "^9.0.0",
"yargs": "^17.7.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"copyfiles": "^2.4.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"rimraf": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"gitHead": "161775a17f75ed5bfa661e963818933216b3a2c4"
}