@elizaos/plugin-secrets-manager 1.0.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/dist/index.d.ts +1461 -0
- package/dist/index.js +4171 -0
- package/dist/index.js.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/plugin-secrets-manager",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Multi-level secret management plugin for ElizaOS with encryption and dynamic plugin activation",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"elizaos",
|
|
10
|
+
"plugin",
|
|
11
|
+
"secrets",
|
|
12
|
+
"encryption",
|
|
13
|
+
"api-keys",
|
|
14
|
+
"credentials",
|
|
15
|
+
"security"
|
|
16
|
+
],
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": "./package.json",
|
|
19
|
+
".": {
|
|
20
|
+
"import": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"default": "./dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"README.md",
|
|
29
|
+
"package.json"
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@elizaos/core": "workspace:*",
|
|
33
|
+
"zod": "^4.3.6"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"tsup": "8.4.0",
|
|
37
|
+
"typescript": "5.8.2",
|
|
38
|
+
"vitest": "3.1.4"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup",
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"clean": "rm -rf dist",
|
|
44
|
+
"lint": "prettier --write ./src",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:watch": "vitest"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"agentConfig": {
|
|
52
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
53
|
+
"pluginParameters": {
|
|
54
|
+
"ENCRYPTION_SALT": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Custom salt for encryption key derivation (optional)",
|
|
57
|
+
"required": false
|
|
58
|
+
},
|
|
59
|
+
"ENABLE_ENCRYPTION": {
|
|
60
|
+
"type": "boolean",
|
|
61
|
+
"description": "Enable encryption for stored secrets (default: true)",
|
|
62
|
+
"required": false,
|
|
63
|
+
"example": "true"
|
|
64
|
+
},
|
|
65
|
+
"ENABLE_ACCESS_LOGGING": {
|
|
66
|
+
"type": "boolean",
|
|
67
|
+
"description": "Enable access logging for audit (default: true)",
|
|
68
|
+
"required": false,
|
|
69
|
+
"example": "true"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"milaidy": {
|
|
74
|
+
"platforms": [
|
|
75
|
+
"node"
|
|
76
|
+
],
|
|
77
|
+
"runtime": "node",
|
|
78
|
+
"platformDetails": {
|
|
79
|
+
"node": "ESM build available via exports.import"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|