-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.22 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
{
"name": "@rwai/langgraphjs-checkpoint-dynamodb",
"version": "0.1.5",
"license": "MIT",
"description": "Implementation of a LangGraph.js CheckpointSaver that uses a AWS's DynamoDB",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/researchwiseai/langgraphjs-checkpoint-dynamodb"
},
"homepage": "https://github.com/researchwiseai/langgraphjs-checkpoint-dynamodb",
"scripts": {
"build": "bun run build:esm && bun run build:cjs",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"clean": "rimraf dist",
"test": "bun run test:unit",
"test:unit": "bun test -t unit",
"test:integration": "bun test -t integration",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@eslint/markdown": "^6.2.1",
"@types/bun": "latest",
"@types/ungap__structured-clone": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@ungap/structured-clone": "^1.2.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.682.0",
"@aws-sdk/lib-dynamodb": "^3.682.0",
"@langchain/core": "^0.3.16",
"@langchain/langgraph-checkpoint": "^0.0.11"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}