-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 968 Bytes
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
{
"name": "lightrag-ts",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bunx tsc -p tsconfig.json",
"dev": "bun test packages --watch",
"typecheck": "bunx tsc -p tsconfig.json --pretty false",
"lint": "bunx @biomejs/biome lint packages examples",
"format": "bunx @biomejs/biome format --write packages examples",
"test": "bun test packages",
"build:all": "bash scripts/build-all.sh",
"publish:all": "bash scripts/publish-all.sh",
"e2e:full": "bun scripts/e2e/full-flow-test.ts",
"e2e:full:mock": "USE_MOCK=true bun scripts/e2e/full-flow-test.ts",
"e2e:real-pdf": "bun scripts/e2e/real-pdf-test.ts"
},
"dependencies": {
"@langchain/community": "^1.1.27",
"@langchain/core": "^1.1.40",
"js-tiktoken": "^1.0.21"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/pg": "^8.20.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}