-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "langchain-ts-starter",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"tsup": "tsup",
"build": "tsup",
"index": "tsx -r dotenv/config src/index.ts",
"recommend": "tsx -r dotenv/config src/recommend.ts",
"lint": "eslint src",
"lint:fix": "npm run lint --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --list-different \"**/*.ts\""
},
"keywords": [
"langchain",
"starter",
"template",
"node",
"typescript",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"@pinecone-database/pinecone": "^2.0.0",
"@xenova/transformers": "^2.2.0",
"chalk": "^5.2.0",
"cli-progress": "^3.12.0",
"console-table-printer": "^2.11.1",
"cross-fetch": "^3.1.6",
"danfojs-node": "^1.1.2",
"dotenv": "^16.1.3",
"json2csv": "^6.0.0-alpha.2",
"langchain": "^0.0.85",
"onnxruntime-node": "^1.15.0",
"tablemark": "^3.0.0",
"tsup": "^6.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/cli-progress": "^3.11.0",
"@types/js-yaml": "^4",
"@types/json2csv": "^5.0.3",
"@types/node": "^18.15.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"tsx": "^3.12.3",
"typescript": "^5.0.4"
}
}