-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "@autorag/librarian",
"version": "2.1.0",
"description": "Self-evolving librarian agent on Pi framework with pluggable retrieval methods",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Marker-Inc-Korea/AutoRAG.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"autorag": "dist/cli/index.js"
},
"files": [
"dist",
"skills",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts src/cli/index.ts src/subagents/explorer-tools-extension.ts --outdir dist --target node --packages external && tsc -p tsconfig.build.json && node scripts/fixup-dts.mjs",
"prepublishOnly": "bun run typecheck && bun run build",
"prepare": "bun run build",
"test": "vitest run",
"check": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.84.1",
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "0.84.1",
"@opendataloader/pdf": "^2.4.7",
"@pngwasi/node-tantivy-binding": "^0.3.4",
"@rhwp/core": "0.8.2",
"chardet": "^2.2.0",
"fast-xml-parser": "^5.9.3",
"iconv-lite": "^0.7.2",
"jszip": "^3.10.1",
"mailparser": "^3.9.12",
"pi-subagents": "0.40.0",
"slides-grab": "^1.3.1",
"smol-toml": "1.7.1",
"tesseract.js": "^7.0.0",
"typebox": "^1.1.24",
"yaml": "^2.8.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/mailparser": "^3.4.6",
"@types/node": "^26.1.2",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}