wolbarg 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,116 @@
1
+ {
2
+ "name": "wolbarg",
3
+ "version": "0.3.0",
4
+ "description": "Wolbarg — modular, provider-agnostic semantic memory SDK for AI agents. SQLite + PostgreSQL, hybrid search, ingest, optional rerankers.",
5
+ "license": "MIT",
6
+ "author": {
7
+ "name": "Atharv Munde",
8
+ "url": "https://github.com/Atharvmunde11"
9
+ },
10
+ "keywords": [
11
+ "wolbarg",
12
+ "Wolbarg",
13
+ "ai",
14
+ "agents",
15
+ "ai-agents",
16
+ "multi-agent",
17
+ "multi-agent-systems",
18
+ "memory",
19
+ "agent-memory",
20
+ "semantic-memory",
21
+ "shared-memory",
22
+ "embeddings",
23
+ "vector-search",
24
+ "vector-database",
25
+ "sqlite",
26
+ "sqlite-vec",
27
+ "local-first",
28
+ "offline-first",
29
+ "rag",
30
+ "typescript",
31
+ "nodejs",
32
+ "openai",
33
+ "ollama",
34
+ "llm",
35
+ "langchain-alternative",
36
+ "autonomous-agents",
37
+ "semantic-search",
38
+ "benchmarks"
39
+ ],
40
+ "type": "module",
41
+ "main": "./dist/index.cjs",
42
+ "module": "./dist/index.js",
43
+ "types": "./dist/index.d.ts",
44
+ "exports": {
45
+ ".": {
46
+ "types": "./dist/index.d.ts",
47
+ "import": "./dist/index.js",
48
+ "require": "./dist/index.cjs"
49
+ }
50
+ },
51
+ "files": [
52
+ "dist",
53
+ "README.md",
54
+ "LICENSE",
55
+ "CHANGELOG.md"
56
+ ],
57
+ "engines": {
58
+ "node": ">=22.5.0"
59
+ },
60
+ "scripts": {
61
+ "build": "tsup && node scripts/fix-dist-imports.mjs",
62
+ "clean": "rimraf dist",
63
+ "typecheck": "tsc --noEmit",
64
+ "test": "vitest run",
65
+ "test:watch": "vitest",
66
+ "prepublishOnly": "npm run clean && npm run build && npm run test"
67
+ },
68
+ "dependencies": {
69
+ "sqlite-vec": "^0.1.6"
70
+ },
71
+ "peerDependencies": {
72
+ "pg": "^8.13.0",
73
+ "pdf-parse": "^1.1.4 || ^2.0.0",
74
+ "mammoth": "^1.8.0",
75
+ "tesseract.js": "^5.1.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "pg": {
79
+ "optional": true
80
+ },
81
+ "pdf-parse": {
82
+ "optional": true
83
+ },
84
+ "mammoth": {
85
+ "optional": true
86
+ },
87
+ "tesseract.js": {
88
+ "optional": true
89
+ }
90
+ },
91
+ "devDependencies": {
92
+ "@types/node": "^22.15.21",
93
+ "@types/pg": "^8.11.11",
94
+ "rimraf": "^6.0.1",
95
+ "tsup": "^8.5.0",
96
+ "typescript": "^5.8.3",
97
+ "vitest": "^3.1.4"
98
+ },
99
+ "repository": {
100
+ "type": "git",
101
+ "url": "git+https://github.com/Atharvmunde11/wolbarg.git"
102
+ },
103
+ "bugs": {
104
+ "url": "https://github.com/Atharvmunde11/wolbarg/issues"
105
+ },
106
+ "homepage": "https://wolbarg.com",
107
+ "funding": {
108
+ "type": "github",
109
+ "url": "https://github.com/Atharvmunde11/wolbarg"
110
+ },
111
+ "optionalDependencies": {
112
+ "mammoth": "^1.12.0",
113
+ "pdf-parse": "^1.1.4",
114
+ "pg": "^8.22.0"
115
+ }
116
+ }