-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "bardie",
"version": "2.2.0",
"description": "A powerful library for interacting with the Google AI",
"main": "index.js",
"types": "./lib/bardie.d.ts",
"scripts": {
"question": "node examples/question.js",
"questionGemini": "node examples/questionGemini.js",
"questionWithImage": "node examples/questionWithImage.js",
"questionGeminiWithImage": "node examples/questionGeminiWithImage.js"
},
"bin": {
"bardie": "cli.js"
},
"author": {
"name": "RizzFuzz",
"url": "https://github.com/rizzlogy"
},
"license": "GPL-3.0",
"keywords": [
"ai",
"chatbot",
"bot",
"robot",
"axios",
"completions",
"cli",
"bard",
"Gemini-AI",
"gemini.google.com",
"bard.rizzy.eu.org"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rizzlogy/bardie.git"
},
"bugs": {
"url": "https://github.com/rizzlogy/bardie"
},
"homepage": "https://bard.rizzy.eu.org",
"dependencies": {
"axios": "^1.3.4",
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.12",
"markdown-it": "^13.0.1",
"prompt-sync": "^4.2.0",
"yargs": "^17.7.1"
}
}