-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.19 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rishiai",
"version": "0.0.1",
"description": "AI Chatbot in a terminal environment.",
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"bin": {
"rishi": "./dist/index.js"
},
"preferGlobal": true,
"license": "MIT",
"author": {
"name": "Rishi Mondal",
"url": "https://www.linkedin.com/in/rishi-mondal-5238b2282/"
},
"repository": {
"type": "git",
"url": "https://github.com/MAVRICK-1/Rishi-AI"
},
"files": ["dist"],
"keywords": [
"gemini",
"google gemini",
"ai",
"mavai",
"chatbot",
"cli",
"mavrick",
"rishi"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"start": "node dist/index.js ",
"lint": "biome lint .",
"lint:fix": "biome lint --apply-unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"code-check": "biome check .",
"code-check:fix": "biome check --apply-unsafe .",
"biome:ci": "biome ci .",
"pub:release": "pnpm build && pnpm publish --access public"
},
"dependencies": {
"@google/generative-ai": "^0.1.3",
"@langchain/community": "^0.0.15",
"@langchain/core": "^0.1.9",
"@langchain/google-genai": "^0.0.6",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"configstore": "^6.0.0",
"d3-dsv": "2",
"faiss-node": "^0.5.1",
"fs-extra": "^11.2.0",
"html-to-text": "^9.0.5",
"jsdom": "^23.1.0",
"json-colorizer": "^2.2.2",
"langchain": "^0.1.0",
"nanoid": "^5.0.4",
"node-fetch": "^3.3.2",
"ora": "^7.0.1",
"package-json": "^8.1.1",
"pdf-parse": "^1.1.1",
"prompts": "^2.4.2",
"qrcode": "^1.5.3",
"rimraf": "^5.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/configstore": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^20.10.4",
"@types/prompts": "^2.4.9",
"@types/qrcode": "^1.5.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"type-fest": "^4.8.3",
"typescript": "^5.3.3"
}
}