-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 848 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
{
"name": "@cyyyu/ai",
"version": "1.3.6",
"description": "A command line program designed to interact with Azure OpenAI API.",
"main": "index.js",
"bin": {
"ai": "./bin/ai.mjs"
},
"scripts": {
"test": "ava"
},
"keywords": [
"ai",
"openai",
"azure",
"gpt",
"chatgpt",
"api",
"command-line",
"cli"
],
"author": "Chuang Yu <[email protected]> (https://github.com/cyyyu)",
"license": "MIT",
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"ansi-escapes": "^6.2.0",
"blessed": "^0.1.81",
"chalk": "^5.2.0",
"clipboardy": "^3.0.0",
"command-line-args": "^5.2.1",
"marked": "^4.3.0",
"marked-terminal": "^5.1.1",
"node-fetch": "^3.3.1",
"ora": "^6.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"ava": "^5.2.0"
}
}