-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"name": "node-gpt-cli",
"version": "2.0.1",
"description": "A NodeJS GPT-4 CLI client",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"gpt4": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohall/gpt.git"
},
"keywords": [
"gpt4",
"openai",
"cli"
],
"scripts": {
"postinstall": "./scripts/writeconfig.js",
"uninstall": "rm ~/.node-gpt-config.json",
"dev": "node --trace-warnings index.js",
"dev:debug": "node --inspect --trace-warnings index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"author": {
"name": "Oakley Hall",
"email": "oakley349@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ohall/gpt/issues"
},
"homepage": "https://github.com/ohall/gpt#readme",
"dependencies": {
"openai": "^4.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"@jest/globals": "^29.7.0"
}
}