This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.57 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
90
91
92
93
94
95
96
{
"name": "llama_index_node",
"version": "0.0.1",
"description": "llama_index for node.",
"engines": {
"node": ">=18"
},
"type": "module",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-syntax-decorators": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "~29.2",
"@types/node": "~18",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"esbuild-plugin-wasm": "^1.0.0",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"jest": "~29.3",
"prettier": "~2.8",
"rimraf": "~3.0",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~5.0.4"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc --outDir dist/",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"build1": "yarn clean && yarn build:esm && node scripts/create-entrypoints.js && node scripts/check-tree-shaking.js",
"build:esm": "tsc --outDir dist/ ",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "swk777 <[email protected]>",
"license": "MIT",
"dependencies": {
"@dqbd/tiktoken": "^1.0.4",
"@huggingface/inference": "^1.7.1",
"class-transformer": "^0.5.1",
"cohere-ai": "^6.2.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"esbuild": "0.17.16",
"glob": "^10.2.2",
"langchain": "^0.0.52",
"lodash": "^4.17.21",
"natural": "^6.3.0",
"nltk-stopwords": "^1.0.3",
"node-rake": "^1.0.1",
"officeparser": "^3.3.0",
"openai": "^3.2.1",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"redis": "^4.6.5",
"replicate": "^0.9.1",
"tesseract.js": "^4.0.6",
"tiktoken-node": "^0.0.5",
"tslib": "~2.4",
"typeorm": "^0.3.14",
"uuid": "^9.0.0"
},
"packageManager": "[email protected]",
"keywords": [
"llm",
"langchain",
"ai",
"gptindex",
"llama_index",
"gpt3",
"chain",
"prompt",
"prompt programming",
"promptable",
"nlp",
"javascript",
"react",
"chatgpt",
"model",
"machine learning",
"ml",
"typescript"
]
}