@elizaos/plugin-local-storage 2.0.3-beta.2 → 2.0.3-beta.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-local-storage",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -36,11 +36,12 @@
36
36
  }
37
37
  },
38
38
  "files": [
39
+ "registry-entry.json",
39
40
  "dist"
40
41
  ],
41
42
  "dependencies": {
42
43
  "@brighter/storage-adapter-local": "^1.6.3",
43
- "@elizaos/core": "2.0.3-beta.2"
44
+ "@elizaos/core": "2.0.3-beta.4"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@biomejs/biome": "^2.4.14",
@@ -83,5 +84,5 @@
83
84
  "node": "Node.js build available — uses node:fs / node:path"
84
85
  }
85
86
  },
86
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
87
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
87
88
  }
@@ -0,0 +1,36 @@
1
+ {
2
+ "id": "local-storage",
3
+ "name": "Local Storage",
4
+ "description": "Local filesystem attachment storage. Default fallback when Eliza Cloud storage is not connected.",
5
+ "npmName": "@elizaos/plugin-local-storage",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["storage", "files", "local"],
9
+ "config": {
10
+ "LOCAL_STORAGE_PATH": {
11
+ "type": "file-path",
12
+ "required": false,
13
+ "sensitive": false,
14
+ "label": "Storage Path",
15
+ "help": "Filesystem root for attachment storage. Defaults to <stateDir>/attachments.",
16
+ "advanced": false
17
+ }
18
+ },
19
+ "render": {
20
+ "visible": true,
21
+ "pinTo": [],
22
+ "style": "card",
23
+ "icon": "FolderOpen",
24
+ "group": "storage",
25
+ "groupOrder": 10,
26
+ "actions": ["enable", "configure"]
27
+ },
28
+ "resources": {
29
+ "homepage": "https://github.com/elizaos/eliza",
30
+ "repository": "https://github.com/elizaos/eliza"
31
+ },
32
+ "dependsOn": [],
33
+ "kind": "plugin",
34
+ "subtype": "storage",
35
+ "cloudBacked": false
36
+ }