-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.53 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "librarium",
"version": "1.4.1",
"description": "Fan out research queries to multiple search and deep-research APIs in parallel",
"type": "module",
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"exports": {
".": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
}
},
"bin": {
"librarium": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"build:sea": "node scripts/build-sea.mjs",
"benchmark": "node benchmark/cli.mjs",
"benchmark:validate": "node benchmark/validate.mjs",
"benchmark:ci": "node benchmark/ci.mjs",
"dev": "tsup --watch",
"test": "vitest run",
"test:integration": "npm run build && vitest run --config vitest.integration.config.ts",
"test:workers": "npm run build && vitest run --config vitest.workers.config.ts",
"test:pty": "npm run build && vitest run --config vitest.pty.config.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ tests/ benchmark/",
"lint:fix": "biome check --write src/ tests/ benchmark/"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"@inquirer/prompts": "^7.10.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"commander": "^14.0.3",
"marked": "^18.0.6",
"ora": "^9.4.1",
"p-limit": "^7.3.0",
"strip-ansi": "^7.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@cloudflare/vitest-pool-workers": "^0.18.6",
"@types/node": "^22.20.1",
"esbuild": "^0.28.1",
"node-pty": "^1.1.0",
"postject": "^1.0.0-alpha.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
},
"overrides": {
"postcss": "8.5.23",
"tsup": {
"esbuild": "0.28.1"
},
"vite": {
"rolldown": "1.1.4"
}
},
"engines": {
"node": ">=20.12"
},
"files": [
"dist"
],
"keywords": [
"research",
"search",
"deep-research",
"multi-provider",
"perplexity",
"brave",
"exa",
"tavily",
"parallel",
"cli"
],
"license": "MIT",
"author": "Joey Kudish",
"homepage": "https://librarium.agentsy.build",
"repository": {
"type": "git",
"url": "git+https://github.com/jkudish/librarium.git"
},
"bugs": {
"url": "https://github.com/jkudish/librarium/issues"
},
"publishConfig": {
"access": "public"
}
}