-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.38 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
47
48
49
50
51
{
"name": "openai-node-cli",
"version": "1.1.1",
"description": "The openai-cli package is a command line interface (CLI) for interacting with the OpenAI API. It allows you to perform various operations using the OpenAI API, such as creating completions, images, and embeddings, uploading and downloading files, and managing fine-tune jobs and models.",
"keywords": [
"openai",
"openai-api",
"machine-learning",
"artificial-intelligence",
"chatgpt",
"chat-gpt",
"gpt",
"gpt-3",
"ai",
"node",
"nodejs",
"cli",
"command-line-interface"
],
"main": "index.js",
"bin": {
"openai": "bin/cli.js"
},
"scripts": {
"lint": "eslint src/ bin/",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc check-coverage --lines 100 --branches 100 --functions 100 --statements 100"
},
"author": "Mirnes Cajlakovic",
"repository": {
"type": "git",
"url": "git@github.com:mirnes-cajlakovic/openai-node-cli.git"
},
"publishConfig": {
"@mirnes-cajlakovic:registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"dependencies": {
"commander": "^9.4.1",
"lodash": "^4.17.21",
"openai": "^3.1.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1"
}
}