-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 850 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
{
"name": "quivr-typechat",
"version": "0.0.1",
"description": "A TypeChatLanguageModel compatible with Quivr API to run TpeChat on your own Quivr istance with the possibility of using a private LLM",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DKFN/quivr-typechat.git"
},
"keywords": [
"quivr",
"typechat",
"private",
"llm"
],
"author": "DKFN",
"license": "MIT",
"bugs": {
"url": "https://github.com/DKFN/quivr-typechat/issues"
},
"homepage": "https://github.com/DKFN/quivr-typechat#readme",
"devDependencies": {
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"typechat": "^0.0.10"
}
}