-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "vest-watsonx-challenge-2024",
"version": "1.0.0",
"description": "VEST squad watsonx challenge code",
"type": "module",
"files": [
"out/**/*"
],
"bin": "out/bin.js",
"main": "out/index.js",
"types": "out/index.d.ts",
"engines": {
"npm": ">=8.0.0",
"node": ">=22.0.0"
},
"scripts": {
"preinstall": "python -m pip install -r requirements.txt",
"chroma": "chroma run --path ./chroma",
"start": "tsx --env-file=.env ./src/bin.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "pkgroll --dist out",
"clean": "rimraf coverage out"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"pkgroll": "^2.1.1",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@ibm-cloud/watsonx-ai": "^0.1.1",
"@langchain/community": "^0.2.18",
"@langchain/core": "^0.2.15",
"chalk": "^5.3.0",
"chromadb": "^1.8.1",
"fast-glob": "^3.3.2",
"langchain": "^0.2.9"
}
}