-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.04 KB
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
{
"name": "langgraph-db",
"version": "0.0.5",
"description": "Langraph-DB is a powerful memory backend for LangGraph.js that brings short-term and long-term memory to your agents using flexible storage providers like MongoDB, Prisma, Redis, and more.",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://langgraph-db.pratikpatil.me",
"repository": {
"type": "git",
"url": "https://github.com/0xpratikpatil/langgraph-db.git"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"clean": "rm -rf dist/ .turbo/",
"lint": "eslint --cache --ext .ts,.js src/",
"format": "prettier --config .prettierrc --write \"src\"",
"docs": "typedoc --out docs src/index.ts"
},
"author": "Pratik Patil",
"license": "MIT",
"dependencies": {
"@langchain/langgraph-checkpoint": "^0.0.17",
"redis": "^4.7.1"
},
"peerDependencies": {
"@langchain/core": "^0.3.57"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.17.50",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"prettier": "^2.8.8",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typedoc": "^0.25.13",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"langchain",
"langgraph",
"ai",
"database",
"redis",
"persistence",
"checkpoint"
]
}