-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.02 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
{
"name": "chatgpt-repl",
"version": "0.5.0",
"description": "CLI REPL interface to ChatGPT",
"main": "src/cli.js",
"type": "module",
"bin": {
"chatgpt-repl": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"clean": "rm -rf dist; rm -rf node_modules; pnpm install",
"lint": "tsc --noEmit",
"chatgpt-repl": "tsx src/cli.ts",
"prepublishOnly": "pnpm run lint && pnpm run clean && pnpm run build"
},
"author": "Joost Schuur <jschuur@jschuur.com>",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.6.3",
"axios": "^1.3.5",
"boolean": "^3.2.0",
"commander": "^10.0.0",
"conf": "^11.0.1",
"dotenv": "^16.0.3",
"jsonfile": "^6.1.0",
"md5": "^2.3.0",
"node-clipboardy": "^1.0.3",
"openai": "^3.2.1",
"ora": "^6.3.0",
"picocolors": "^1.0.0",
"pluralize": "^8.0.0",
"pretty-ms": "^8.0.0",
"read-last-lines": "^1.8.0",
"streamed-chatgpt-api": "github:shrft/streamed-chatgpt-api",
"term-size": "^3.0.2",
"update-notifier": "^6.0.2",
"wordcount": "^1.1.1",
"wrap-text": "^1.0.9",
"zod": "^3.21.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"screenshot.png"
],
"keywords": [
"chatgpt",
"cli",
"repl",
"chatgpt-api",
"openai"
],
"homepage": "https://github.com/jschuur/chatgpt-repl#readme",
"bugs": {
"url": "https://github.com/jschuur/chatgpt-repl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jschuur/chatgpt-repl.git"
},
"devDependencies": {
"@types/jsonfile": "^6.1.1",
"@types/md5": "^2.3.2",
"@types/node": "^18.15.3",
"@types/pluralize": "^0.0.29",
"@types/update-notifier": "^6.0.2",
"@types/wrap-text": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.35.0",
"tsx": "^3.12.5",
"typescript": "^5.0.2"
},
"cspell": {
"ignorePaths": [
"pnpm-lock.yaml"
]
}
}