@elizaos/plugin-bluesky 2.0.0-alpha.7 → 2.0.0-beta.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/package.json CHANGED
@@ -1,191 +1,197 @@
1
1
  {
2
- "name": "@elizaos/plugin-bluesky",
3
- "version": "2.0.0-alpha.7",
4
- "description": "",
5
- "type": "module",
6
- "main": "dist/cjs/index.node.cjs",
7
- "module": "dist/node/index.node.js",
8
- "types": "dist/node/index.d.ts",
9
- "browser": "dist/browser/index.browser.js",
10
- "sideEffects": false,
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/elizaos/elizaos.git"
14
- },
15
- "exports": {
16
- "./package.json": "./package.json",
17
- ".": {
18
- "types": "./dist/node/index.d.ts",
19
- "browser": {
20
- "types": "./dist/browser/index.d.ts",
21
- "import": "./dist/browser/index.browser.js",
22
- "default": "./dist/browser/index.browser.js"
23
- },
24
- "node": {
25
- "types": "./dist/node/index.d.ts",
26
- "import": "./dist/node/index.node.js",
27
- "require": "./dist/cjs/index.node.cjs",
28
- "default": "./dist/node/index.node.js"
29
- },
30
- "default": "./dist/node/index.node.js"
31
- }
32
- },
33
- "files": [
34
- "dist"
35
- ],
36
- "keywords": [],
37
- "author": "elizaOS",
38
- "license": "MIT",
39
- "scripts": {
40
- "build": "bun run build.ts",
41
- "build:ts": "bun run build.ts",
42
- "dev": "bun --hot build.ts",
43
- "clean": "rm -rf dist .turbo node_modules",
44
- "test": "vitest run --passWithNoTests",
45
- "typecheck": "tsc --noEmit",
46
- "lint": "bunx @biomejs/biome check --write --unsafe .",
47
- "lint:check": "bunx @biomejs/biome check .",
48
- "format": "bunx @biomejs/biome format --write .",
49
- "format:check": "bunx @biomejs/biome format ."
50
- },
51
- "dependencies": {
52
- "@atproto/api": "^0.13.14",
53
- "@atproto/identity": "^0.4.4",
54
- "@atproto/lexicon": "^0.4.11",
55
- "@atproto/syntax": "^0.3.2",
56
- "@atproto/xrpc": "^0.6.4",
57
- "@elizaos/core": "2.0.0-alpha.3",
58
- "lru-cache": "^11.1.0",
59
- "zod": "^4.3.6"
60
- },
61
- "devDependencies": {
62
- "@biomejs/biome": "^2.3.11",
63
- "@types/node": "^25.0.3",
64
- "typescript": "^5.9.3"
65
- },
66
- "peerDependencies": {
67
- "@elizaos/core": "2.0.0-alpha.3"
68
- },
69
- "publishConfig": {
70
- "access": "public"
71
- },
72
- "agentConfig": {
73
- "pluginType": "elizaos:client:1.0.0",
74
- "pluginParameters": {
75
- "BLUESKY_ENABLED": {
76
- "type": "boolean",
77
- "description": "Enables or disables the BlueSky plugin.",
78
- "required": false,
79
- "default": true,
80
- "sensitive": false
81
- },
82
- "BLUESKY_DRY_RUN": {
83
- "type": "boolean",
84
- "description": "Enables or disables dry run mode when interacting with BlueSky; when true, operations are simulated but not executed.",
85
- "required": false,
86
- "default": false,
87
- "sensitive": false
88
- },
89
- "BLUESKY_HANDLE": {
90
- "type": "string",
91
- "description": "The BlueSky handle (username) for the agent account.",
92
- "required": true,
93
- "sensitive": false
94
- },
95
- "BLUESKY_PASSWORD": {
96
- "type": "string",
97
- "description": "The app password for authentication with BlueSky.",
98
- "required": true,
99
- "sensitive": true
100
- },
101
- "BLUESKY_SERVICE": {
102
- "type": "string",
103
- "description": "The BlueSky service URL (PDS instance).",
104
- "required": false,
105
- "default": "https://bsky.social",
106
- "sensitive": false
107
- },
108
- "BLUESKY_MAX_POST_LENGTH": {
109
- "type": "number",
110
- "description": "Maximum number of characters allowed in a BlueSky post.",
111
- "required": false,
112
- "default": 300,
113
- "sensitive": false
114
- },
115
- "BLUESKY_POLL_INTERVAL": {
116
- "type": "number",
117
- "description": "Polling interval in seconds for BlueSky operations such as fetching new notifications.",
118
- "required": false,
119
- "default": 60,
120
- "sensitive": false
121
- },
122
- "BLUESKY_ENABLE_POSTING": {
123
- "type": "boolean",
124
- "description": "Enables or disables the ability to post to BlueSky.",
125
- "required": false,
126
- "default": true,
127
- "sensitive": false
128
- },
129
- "BLUESKY_POST_INTERVAL_MIN": {
130
- "type": "number",
131
- "description": "Minimum interval in seconds between automated posts.",
132
- "required": false,
133
- "default": 1800,
134
- "sensitive": false
135
- },
136
- "BLUESKY_POST_INTERVAL_MAX": {
137
- "type": "number",
138
- "description": "Maximum interval in seconds between automated posts.",
139
- "required": false,
140
- "default": 3600,
141
- "sensitive": false
142
- },
143
- "BLUESKY_ENABLE_ACTION_PROCESSING": {
144
- "type": "boolean",
145
- "description": "Turns on or off automated action processing for BlueSky events.",
146
- "required": false,
147
- "default": true,
148
- "sensitive": false
149
- },
150
- "BLUESKY_ACTION_INTERVAL": {
151
- "type": "number",
152
- "description": "Interval in seconds between action-processing cycles.",
153
- "required": false,
154
- "default": 120,
155
- "sensitive": false
156
- },
157
- "BLUESKY_POST_IMMEDIATELY": {
158
- "type": "boolean",
159
- "description": "If true, posts are published immediately instead of waiting for a schedule.",
160
- "required": false,
161
- "default": false,
162
- "sensitive": false
163
- },
164
- "BLUESKY_MAX_ACTIONS_PROCESSING": {
165
- "type": "number",
166
- "description": "Maximum number of BlueSky actions to process in a single batch.",
167
- "required": false,
168
- "default": 5,
169
- "sensitive": false
170
- },
171
- "BLUESKY_ENABLE_DMS": {
172
- "type": "boolean",
173
- "description": "Enable processing of direct messages via the chat.bsky API.",
174
- "required": false,
175
- "default": true,
176
- "sensitive": false
177
- }
178
- }
179
- },
180
- "milady": {
181
- "platforms": [
182
- "browser",
183
- "node"
184
- ],
185
- "runtime": "both",
186
- "platformDetails": {
187
- "browser": "Browser-compatible build available via exports.browser",
188
- "node": "Node.js build available via exports.node"
189
- }
190
- }
2
+ "name": "@elizaos/plugin-bluesky",
3
+ "version": "2.0.0-beta.1",
4
+ "description": "",
5
+ "type": "module",
6
+ "main": "dist/cjs/index.node.cjs",
7
+ "module": "dist/node/index.node.js",
8
+ "types": "dist/node/index.d.ts",
9
+ "browser": "dist/browser/index.browser.js",
10
+ "sideEffects": false,
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/elizaos/elizaos.git"
14
+ },
15
+ "exports": {
16
+ "./package.json": "./package.json",
17
+ ".": {
18
+ "types": "./dist/node/index.d.ts",
19
+ "browser": {
20
+ "types": "./dist/browser/index.d.ts",
21
+ "import": "./dist/browser/index.browser.js",
22
+ "default": "./dist/browser/index.browser.js"
23
+ },
24
+ "node": {
25
+ "types": "./dist/node/index.d.ts",
26
+ "import": "./dist/node/index.node.js",
27
+ "require": "./dist/cjs/index.node.cjs",
28
+ "default": "./dist/node/index.node.js"
29
+ },
30
+ "default": "./dist/node/index.node.js"
31
+ }
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "keywords": [],
37
+ "author": "elizaOS",
38
+ "license": "MIT",
39
+ "scripts": {
40
+ "build": "bun run build.ts",
41
+ "build:ts": "bun run build.ts",
42
+ "dev": "bun --hot build.ts",
43
+ "clean": "rm -rf dist .turbo",
44
+ "test": "vitest run",
45
+ "typecheck": "tsc --noEmit",
46
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
47
+ "lint:check": "bunx @biomejs/biome check .",
48
+ "format": "bunx @biomejs/biome format --write .",
49
+ "format:check": "bunx @biomejs/biome format ."
50
+ },
51
+ "dependencies": {
52
+ "@atproto/api": "^0.19.0",
53
+ "@atproto/identity": "^0.4.4",
54
+ "@atproto/lexicon": "^0.6.0",
55
+ "@atproto/syntax": "^0.5.0",
56
+ "@atproto/xrpc": "^0.7.0",
57
+ "@elizaos/core": "2.0.0-beta.1",
58
+ "lru-cache": "^11.1.0",
59
+ "zod": "^4.4.3"
60
+ },
61
+ "devDependencies": {
62
+ "@biomejs/biome": "^2.4.14",
63
+ "@types/node": "^25.0.3",
64
+ "typescript": "^6.0.3"
65
+ },
66
+ "peerDependencies": {
67
+ "@elizaos/core": "2.0.0-beta.1"
68
+ },
69
+ "resolutions": {
70
+ "@noble/hashes": "2.2.0"
71
+ },
72
+ "overrides": {
73
+ "@noble/hashes": "2.2.0"
74
+ },
75
+ "publishConfig": {
76
+ "access": "public"
77
+ },
78
+ "agentConfig": {
79
+ "pluginType": "elizaos:client:1.0.0",
80
+ "pluginParameters": {
81
+ "BLUESKY_ENABLED": {
82
+ "type": "boolean",
83
+ "description": "Enables or disables the BlueSky plugin.",
84
+ "required": false,
85
+ "default": true,
86
+ "sensitive": false
87
+ },
88
+ "BLUESKY_DRY_RUN": {
89
+ "type": "boolean",
90
+ "description": "Enables or disables dry run mode when interacting with BlueSky; when true, operations are simulated but not executed.",
91
+ "required": false,
92
+ "default": false,
93
+ "sensitive": false
94
+ },
95
+ "BLUESKY_HANDLE": {
96
+ "type": "string",
97
+ "description": "The BlueSky handle (username) for the agent account.",
98
+ "required": true,
99
+ "sensitive": false
100
+ },
101
+ "BLUESKY_PASSWORD": {
102
+ "type": "string",
103
+ "description": "The app password for authentication with BlueSky.",
104
+ "required": true,
105
+ "sensitive": true
106
+ },
107
+ "BLUESKY_SERVICE": {
108
+ "type": "string",
109
+ "description": "The BlueSky service URL (PDS instance).",
110
+ "required": false,
111
+ "default": "https://bsky.social",
112
+ "sensitive": false
113
+ },
114
+ "BLUESKY_MAX_POST_LENGTH": {
115
+ "type": "number",
116
+ "description": "Maximum number of characters allowed in a BlueSky post.",
117
+ "required": false,
118
+ "default": 300,
119
+ "sensitive": false
120
+ },
121
+ "BLUESKY_POLL_INTERVAL": {
122
+ "type": "number",
123
+ "description": "Polling interval in seconds for BlueSky operations such as fetching new notifications.",
124
+ "required": false,
125
+ "default": 60,
126
+ "sensitive": false
127
+ },
128
+ "BLUESKY_ENABLE_POSTING": {
129
+ "type": "boolean",
130
+ "description": "Enables or disables the ability to post to BlueSky.",
131
+ "required": false,
132
+ "default": true,
133
+ "sensitive": false
134
+ },
135
+ "BLUESKY_POST_INTERVAL_MIN": {
136
+ "type": "number",
137
+ "description": "Minimum interval in seconds between automated posts.",
138
+ "required": false,
139
+ "default": 1800,
140
+ "sensitive": false
141
+ },
142
+ "BLUESKY_POST_INTERVAL_MAX": {
143
+ "type": "number",
144
+ "description": "Maximum interval in seconds between automated posts.",
145
+ "required": false,
146
+ "default": 3600,
147
+ "sensitive": false
148
+ },
149
+ "BLUESKY_ENABLE_ACTION_PROCESSING": {
150
+ "type": "boolean",
151
+ "description": "Turns on or off automated action processing for BlueSky events.",
152
+ "required": false,
153
+ "default": true,
154
+ "sensitive": false
155
+ },
156
+ "BLUESKY_ACTION_INTERVAL": {
157
+ "type": "number",
158
+ "description": "Interval in seconds between action-processing cycles.",
159
+ "required": false,
160
+ "default": 120,
161
+ "sensitive": false
162
+ },
163
+ "BLUESKY_POST_IMMEDIATELY": {
164
+ "type": "boolean",
165
+ "description": "If true, posts are published immediately instead of waiting for a schedule.",
166
+ "required": false,
167
+ "default": false,
168
+ "sensitive": false
169
+ },
170
+ "BLUESKY_MAX_ACTIONS_PROCESSING": {
171
+ "type": "number",
172
+ "description": "Maximum number of BlueSky actions to process in a single batch.",
173
+ "required": false,
174
+ "default": 5,
175
+ "sensitive": false
176
+ },
177
+ "BLUESKY_ENABLE_DMS": {
178
+ "type": "boolean",
179
+ "description": "Enable processing of direct messages via the chat.bsky API.",
180
+ "required": false,
181
+ "default": true,
182
+ "sensitive": false
183
+ }
184
+ }
185
+ },
186
+ "eliza": {
187
+ "platforms": [
188
+ "browser",
189
+ "node"
190
+ ],
191
+ "runtime": "both",
192
+ "platformDetails": {
193
+ "browser": "Browser-compatible build available via exports.browser",
194
+ "node": "Node.js build available via exports.node"
195
+ }
196
+ }
191
197
  }