-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "ai-bookmark",
"version": "0.0.0",
"private": true,
"bin": "./bin/cli.js",
"scripts": {
"start": "node ./bin/cli.js",
"start:init": "node ./bin/cli.js init",
"start:embed": "python ./python/embed_api.py",
"start:llm": "python ./python/llm_api.py",
"watch": "tsc --watch",
"build": "tsc"
},
"dependencies": {
"@supercharge/promise-pool": "^2.4.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"enquirer": "^2.3.6",
"fs-extra": "^11.1.1",
"inversify": "^6.0.1",
"langchain": "^0.0.68",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@huggingface/inference": "^1.8.0",
"cheerio": "^1.0.0-rc.12",
"hnswlib-node": "^1.4.2"
},
"author": "[email protected]",
"repository": {
"url": "https://github.com/micooz/ai-bookmark.git"
},
"license": "MIT"
}