dejadb 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +3 -0
  3. package/package.json +8 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # DejaDB
2
+
3
+ A memory database for AI agents — your agent has seen this before.
4
+
5
+ This package name is reserved; the first real release is under active development.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // DejaDB — a memory database for AI agents.
2
+ // This package name is reserved; the first real release is under active development.
3
+ module.exports = { version: "0.0.1" };
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "dejadb",
3
+ "version": "0.0.1",
4
+ "description": "DejaDB — a memory database for AI agents. Name reservation; the first real release is under active development.",
5
+ "main": "index.js",
6
+ "license": "Apache-2.0",
7
+ "keywords": ["memory", "agents", "ai", "database", "context"]
8
+ }