-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.39 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.39 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
{
"name": "pdf-brain",
"version": "2.0.0",
"description": "Local PDF & Markdown knowledge base with semantic search, AI enrichment, and SKOS taxonomy",
"type": "module",
"main": "src/index.ts",
"bin": {
"pdf-brain": "./src/cli.ts"
},
"scripts": {
"build": "bun build src/index.ts src/cli.ts --outdir dist --target bun",
"compile": "./scripts/compile.sh",
"compile:all": "./scripts/compile.sh --all",
"release:binaries": "./scripts/release-binaries.sh",
"dev": "bun run src/cli.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"setup": "./scripts/setup.sh",
"changeset": "changeset",
"version": "changeset version",
"release": "bun test && bun run typecheck && changeset publish",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/openai-compatible": "^1.0.29",
"@effect/platform": "^0.72.0",
"@effect/platform-bun": "^0.52.0",
"@effect/schema": "^0.75.0",
"@electric-sql/pglite": "^0.3.0",
"@libsql/client": "^0.15.15",
"@modelcontextprotocol/sdk": "1.26.0",
"@qdrant/js-client-rest": "^1.16.2",
"ai": "^5.0.115",
"dotenv": "^17.2.3",
"effect": "^3.12.0",
"gray-matter": "^4.0.3",
"ink": "^6.5.1",
"ink-spinner": "^5.0.0",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.3",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
"@types/bun": "latest",
"@types/mdast": "^4.0.4",
"@types/react": "^19.2.7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"react-devtools-core": "^7.0.1",
"secretlint": "^11.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
},
"files": [
"src",
"scripts"
],
"keywords": [
"pdf",
"markdown",
"md",
"knowledge-base",
"vector-search",
"semantic-search",
"embeddings",
"rag",
"ollama",
"local-first",
"ai",
"llm",
"taxonomy",
"skos",
"libsql",
"mcp",
"effect-ts",
"document-management",
"personal-knowledge-base",
"pkm"
],
"author": "Joel Hooks",
"license": "MIT",
"lint-staged": {
"*": "secretlint"
}
}