-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.86 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": "@usefolklore/folklore",
"version": "5.0.2",
"description": "OSS P2P agent memory — DID-authored cryptographic envelopes, 48× compressed vectors, 33× faster cached queries via daemon IPC + native Rust client, episodic→semantic consolidation worker, cross-model embedding bridge. CPU-local, zero GPU, zero SaaS.",
"type": "module",
"bin": {
"folklore": "bin/folklore.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usefolklore/folklore.git"
},
"homepage": "https://usefolklore.sh",
"bugs": {
"url": "https://github.com/usefolklore/folklore/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"bootstrap": "bash scripts/bootstrap.sh",
"doctor": "node bin/folklore.js doctor",
"start": "node bin/folklore.js",
"lint": "eslint src tests",
"test": "node --import tsx --test tests/*.test.ts"
},
"files": [
"bin/**",
"dist/**",
".claude-plugin/**",
".claude/hooks/**",
".claude/skills/**",
".claude/helpers/**",
".claude/README.md",
"config/config.example.yaml"
],
"engines": {
"node": ">=20"
},
"keywords": [
"claude-code",
"knowledge-graph",
"research-agent",
"mcp",
"embeddings",
"semantic-search"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"eslint": "^10.4.1",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.61.0"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@libp2p/bootstrap": "12.0.16",
"@libp2p/circuit-relay-v2": "4.2.0",
"@libp2p/crypto": "^5.1.15",
"@libp2p/dcutr": "3.0.15",
"@libp2p/floodsub": "^11.0.18",
"@libp2p/identify": "^4.1.0",
"@libp2p/ping": "^3.1.0",
"@libp2p/interface": "^3.2.0",
"@libp2p/kad-dht": "16.2.0",
"@libp2p/mdns": "12.0.16",
"@libp2p/noise": "^1.0.1",
"@libp2p/peer-id": "^6.0.6",
"@libp2p/tcp": "^11.0.15",
"@libp2p/upnp-nat": "4.0.15",
"@libp2p/websockets": "10.1.19",
"@libp2p/yamux": "^8.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"@multiformats/multiaddr": "^13.0.1",
"@noble/hashes": "^2.2.0",
"@scure/bip39": "^2.0.1",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.10.0",
"chokidar": "^5.0.0",
"fast-xml-parser": "^5.5.11",
"libp2p": "^3.2.0",
"linkedom": "^0.18.12",
"multiformats": "^13.4.2",
"neverthrow": "^8.2.0",
"sqlite-vec": "^0.1.9",
"tree-sitter": "0.21.1",
"tree-sitter-python": "0.23.4",
"tree-sitter-typescript": "0.23.2",
"twitter-api-v2": "^1.29.0",
"y-protocols": "1.0.7",
"yaml": "^2.8.3",
"yjs": "13.6.30",
"zod": "^4.3.6"
},
"overrides": {
"uint8arraylist": "^3.0.2"
}
}