-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 881 Bytes
/
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
{
"name": "gpt-repl",
"description": "A Node.js REPL that integrates with GPT.",
"version": "0.1.5",
"author": {
"name": "Austin Kurpuis",
"email": "[email protected]",
"url": "https://www.austinkurpuis.com/"
},
"bin": {
"gpt-repl": "./bin/index.js"
},
"dependencies": {
"openai": "^3.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"standard": "^17.0.0",
"ts-jest": "^29.1.0",
"uuid": "^9.0.0"
},
"keywords": [
"GPT",
"REPL"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/imaustink/gpt-repl"
},
"scripts": {
"lint": "standard .",
"lint:fix": "standard . --fix",
"test": "jest"
},
"standard": {
"env": [
"jest"
]
},
"type": "module"
}