forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "examples",
"version": "0.0.0",
"private": true,
"description": "Langchain examples",
"main": "./dist/index.js",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --declaration --outDir dist/",
"start": "tsx -r dotenv/config src/index.ts",
"postinstall": "prisma generate --schema ./src/indexes/vector_stores/prisma_vectorstore/prisma/schema.prisma",
"start:dist": "yarn build && node -r dotenv/config dist/index.js",
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"precommit": "lint-staged",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\""
},
"author": "LangChain",
"license": "MIT",
"dependencies": {
"@clickhouse/client": "^0.0.14",
"@elastic/elasticsearch": "^8.4.0",
"@getmetal/metal-sdk": "^4.0.0",
"@getzep/zep-js": "0.4.1",
"@gomomento/sdk": "^1.23.0",
"@opensearch-project/opensearch": "^2.2.0",
"@pinecone-database/pinecone": "^0.0.14",
"@planetscale/database": "^1.8.0",
"@prisma/client": "^4.11.0",
"@supabase/supabase-js": "^2.10.0",
"@tensorflow/tfjs-backend-cpu": "^4.4.0",
"@tigrisdata/vector": "^1.1.0",
"@upstash/redis": "^1.20.6",
"@xata.io/client": "^0.25.1",
"@zilliz/milvus2-sdk-node": "^2.2.7",
"axios": "^0.26.0",
"chromadb": "^1.4.0",
"faiss-node": "^0.2.1",
"graphql": "^16.6.0",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"langchain": "workspace:*",
"ml-distance": "^4.0.0",
"mongodb": "^5.2.0",
"pickleparser": "^0.1.0",
"prisma": "^4.11.0",
"redis": "^4.6.6",
"sqlite3": "^5.1.4",
"typeorm": "^0.3.12",
"typesense": "^1.5.3",
"vectordb": "^0.1.4",
"weaviate-ts-client": "^1.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/js-yaml": "^4",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"dotenv": "^16.0.3",
"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.0"
}
}