-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.92 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
{
"name": "llm-context-loader",
"version": "0.4.0",
"private": true,
"description": "Tiny LLM context loader: turns URLs into clean markdown for LLMs. Speaks Open WebUI's external web loader and Jina Reader-style GET /r/<url>; fetches via Firecrawl; optionally cleans via any OpenAI-compatible Chat Completions endpoint.",
"license": "MIT",
"author": "sousekd",
"homepage": "https://github.com/sousekd/llm-context-loader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sousekd/llm-context-loader.git"
},
"bugs": {
"url": "https://github.com/sousekd/llm-context-loader/issues"
},
"keywords": [
"llm",
"open-webui",
"firecrawl",
"web-loader",
"context",
"markdown",
"scraping",
"openai-compatible",
"fastify"
],
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx watch --env-file-if-exists=.env src/main.ts",
"start": "node --env-file-if-exists=.env dist/main.js",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:all": "tsc -p tsconfig.test.json",
"test": "vitest run --coverage",
"test:watch": "vitest",
"preversion": "npm run typecheck:all && npm run build && npm test",
"format": "prettier --write \"*.ts\" \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"*.ts\" \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"@mdream/js": "^1.3.0",
"@mozilla/readability": "^0.6.0",
"fastify": "^5.2.1",
"linkedom": "^0.18.12",
"mustache": "^4.2.0",
"p-limit": "^6.2.0",
"pino": "^9.6.0",
"pino-pretty": "^13.1.3",
"yaml": "^2.8.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/mustache": "^4.2.6",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.9",
"prettier": "^3.8.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}