-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 813 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 813 Bytes
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
{
"name": "openai-nodejs",
"version": "1.1.0",
"description": "A non-official OpenAI API wrapper for node.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"start": "node src/index.js",
"doc": "jsdoc -c jsdoc.json"
},
"author": "Marcos André",
"license": "MIT",
"homepage": "https://useems.github.io/openai-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/Useems/openai-nodejs.git"
},
"keywords": [
"gpt-3",
"gpt",
"gpt3",
"openai",
"OpenAI",
"node",
"API",
"OpenAI API"
],
"dependencies": {
"axios": "^0.21.1",
"form-data": "^4.0.0",
"gpt-3-encoder": "^1.1.3",
"type-check": "^0.4.0"
},
"devDependencies": {
"jest": "^26.6.3",
"jsdoc": "^3.6.7",
"tidy-jsdoc": "^1.4.0"
}
}