lumberoom 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.
- package/README.md +5 -0
- package/index.js +1 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# lumberoom
|
|
2
|
+
|
|
3
|
+
Reserved for lumberroom, a self-hosted memory server every AI tool you use can read and write, with per-client policy deciding what each may see. Releases arrive at github.com/the-cybersapien/lumberroom.
|
|
4
|
+
|
|
5
|
+
This is the one-r spelling, kept so a typo lands on the right project.
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("lumberroom: this name is reserved. Releases arrive at https://github.com/the-cybersapien/lumberroom");
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lumberoom",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved for lumberroom, a self-hosted memory server every AI tool you use can read and write, with per-client policy deciding what each may see. Releases arrive at github.com/the-cybersapien/lumberroom.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/the-cybersapien/lumberroom.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/the-cybersapien/lumberroom",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js",
|
|
14
|
+
"README.md"
|
|
15
|
+
]
|
|
16
|
+
}
|