-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
{
"name": "@langchain/langgraph-checkpoint-sqlite",
"version": "1.0.1",
"description": "LangGraph",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/langchain-ai/langgraphjs.git",
"directory": "libs/checkpoint-sqlite"
},
"scripts": {
"build": "pnpm turbo build:internal --filter=@langchain/langgraph-checkpoint-sqlite",
"build:internal": "pnpm --filter @langchain/build compile @langchain/langgraph-checkpoint-sqlite",
"clean": "rm -rf dist/ dist-cjs/ .turbo/",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=false NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
"lint": "pnpm lint:eslint && pnpm lint:dpdm",
"lint:fix": "pnpm lint:eslint --fix && pnpm lint:dpdm",
"prepublish": "pnpm build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:int": "vitest run --mode int",
"format": "prettier --config .prettierrc --write \"src\"",
"format:check": "prettier --config .prettierrc --check \"src\""
},
"author": "LangChain",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.6.0"
},
"peerDependencies": {
"@langchain/core": "^1.0.1",
"@langchain/langgraph-checkpoint": "^1.0.0"
},
"devDependencies": {
"@langchain/langgraph-checkpoint": "workspace:*",
"@langchain/scripts": ">=0.1.3 <0.2.0",
"@tsconfig/recommended": "^1.0.3",
"@types/better-sqlite3": "^7.6.12",
"@types/uuid": "^10",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"better-sqlite3": "^12.6.0",
"dotenv": "^16.3.1",
"dpdm": "^3.12.0",
"eslint": "^9.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rollup": "^4.37.0",
"tsx": "^4.19.3",
"typescript": "^4.9.5 || ^5.4.5",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"input": "./src/index.ts",
"typedoc": "./src/index.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/"
]
}