@elizaos/plugin-blooio 2.0.0-alpha.4 → 2.0.0-alpha.6

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 (1) hide show
  1. package/package.json +116 -64
package/package.json CHANGED
@@ -1,66 +1,118 @@
1
1
  {
2
- "name": "@elizaos/plugin-blooio",
3
- "description": "Blooio plugin for iMessage/SMS messaging integration",
4
- "version": "2.0.0-alpha.4",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "packageType": "plugin",
10
- "platform": "node",
11
- "license": "MIT",
12
- "keywords": [
13
- "plugin",
14
- "elizaos",
15
- "blooio",
16
- "imessage",
17
- "sms"
18
- ],
19
- "repository": {
20
- "type": "git",
21
- "url": "https://github.com/elizaos/eliza"
22
- },
23
- "exports": {
24
- "./package.json": "./package.json",
25
- ".": {
26
- "import": {
27
- "types": "./dist/index.d.ts",
28
- "default": "./dist/index.js"
29
- }
30
- }
31
- },
32
- "files": [
33
- "dist",
34
- "README.md",
35
- "package.json"
36
- ],
37
- "dependencies": {
38
- "body-parser": "^1.20.2",
39
- "express": "^4.18.2",
40
- "node-cache": "^5.1.2",
41
- "zod": "^4.3.5"
42
- },
43
- "peerDependencies": {
44
- "@elizaos/core": "2.0.0-alpha.3"
45
- },
46
- "devDependencies": {
47
- "@biomejs/biome": "^2.3.11",
48
- "@types/express": "^4.17.21",
49
- "typescript": "^5.9.3"
50
- },
51
- "scripts": {
52
- "dev": "bun --hot build.ts",
53
- "test": "vitest run || echo 'TypeScript tests skipped - no tests found'",
54
- "lint": "bunx @biomejs/biome check --write --unsafe .",
55
- "typecheck": "tsc --noEmit",
56
- "clean": "rm -rf dist .turbo",
57
- "lint:check": "bunx @biomejs/biome check .",
58
- "build": "bun run build.ts",
59
- "build:ts": "bun run build.ts",
60
- "format": "bunx @biomejs/biome format --write .",
61
- "format:check": "bunx @biomejs/biome format ."
62
- },
63
- "publishConfig": {
64
- "access": "public"
65
- }
2
+ "name": "@elizaos/plugin-blooio",
3
+ "description": "Blooio plugin for iMessage/SMS messaging integration",
4
+ "version": "2.0.0-alpha.6",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "packageType": "plugin",
10
+ "platform": "node",
11
+ "license": "MIT",
12
+ "keywords": [
13
+ "plugin",
14
+ "elizaos",
15
+ "blooio",
16
+ "imessage",
17
+ "sms"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/elizaos/eliza"
22
+ },
23
+ "exports": {
24
+ "./package.json": "./package.json",
25
+ ".": {
26
+ "import": {
27
+ "types": "./dist/index.d.ts",
28
+ "default": "./dist/index.js"
29
+ }
30
+ }
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "package.json"
36
+ ],
37
+ "dependencies": {
38
+ "body-parser": "^1.20.2",
39
+ "express": "^4.18.2",
40
+ "node-cache": "^5.1.2",
41
+ "zod": "^4.3.5"
42
+ },
43
+ "peerDependencies": {
44
+ "@elizaos/core": "2.0.0-alpha.3"
45
+ },
46
+ "devDependencies": {
47
+ "@biomejs/biome": "^2.3.11",
48
+ "@types/express": "^4.17.21",
49
+ "typescript": "^5.9.3"
50
+ },
51
+ "scripts": {
52
+ "dev": "bun --hot build.ts",
53
+ "test": "vitest run || echo 'TypeScript tests skipped - no tests found'",
54
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
55
+ "typecheck": "tsc --noEmit",
56
+ "clean": "rm -rf dist .turbo",
57
+ "lint:check": "bunx @biomejs/biome check .",
58
+ "build": "bun run build.ts",
59
+ "build:ts": "bun run build.ts",
60
+ "format": "bunx @biomejs/biome format --write .",
61
+ "format:check": "bunx @biomejs/biome format ."
62
+ },
63
+ "publishConfig": {
64
+ "access": "public"
65
+ },
66
+ "agentConfig": {
67
+ "pluginParameters": {
68
+ "BLOOIO_API_KEY": {
69
+ "type": "string",
70
+ "description": "API key for Blooio",
71
+ "required": true,
72
+ "sensitive": true
73
+ },
74
+ "BLOOIO_WEBHOOK_URL": {
75
+ "type": "string",
76
+ "description": "Webhook callback URL",
77
+ "required": false,
78
+ "sensitive": false
79
+ },
80
+ "BLOOIO_WEBHOOK_SECRET": {
81
+ "type": "string",
82
+ "description": "Secret key for webhook/client verification",
83
+ "required": false,
84
+ "sensitive": true
85
+ },
86
+ "BLOOIO_BASE_URL": {
87
+ "type": "string",
88
+ "description": "Base URL for API requests",
89
+ "required": false,
90
+ "sensitive": false
91
+ },
92
+ "BLOOIO_WEBHOOK_PORT": {
93
+ "type": "number",
94
+ "description": "Port number",
95
+ "required": false,
96
+ "sensitive": false
97
+ },
98
+ "BLOOIO_FROM_NUMBER": {
99
+ "type": "string",
100
+ "description": "Sender phone number",
101
+ "required": false,
102
+ "sensitive": false
103
+ },
104
+ "BLOOIO_SIGNATURE_TOLERANCE_SEC": {
105
+ "type": "number",
106
+ "description": "Tolerance window in seconds",
107
+ "required": false,
108
+ "sensitive": false
109
+ },
110
+ "BLOOIO_WEBHOOK_PATH": {
111
+ "type": "string",
112
+ "description": "Webhook path",
113
+ "required": false,
114
+ "sensitive": false
115
+ }
116
+ }
117
+ }
66
118
  }