@elizaos/plugin-farcaster 1.0.0-beta.8
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/LICENSE +21 -0
- package/README.md +150 -0
- package/dist/index.js +5240 -0
- package/dist/index.js.map +1 -0
- package/package.json +109 -0
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/plugin-farcaster",
|
|
3
|
+
"version": "1.0.0-beta.8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./package.json": "./package.json",
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"@elizaos/source": "./src/index.ts",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@neynar/nodejs-sdk": "^2.0.3",
|
|
23
|
+
"lru-cache": "^11.1.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"tsup": "^8.3.5",
|
|
27
|
+
"vitest": "^3.0.0"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsup",
|
|
31
|
+
"dev": "tsup --watch",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest watch",
|
|
34
|
+
"test:coverage": "vitest run --coverage",
|
|
35
|
+
"lint": "prettier --write ./src",
|
|
36
|
+
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
|
|
37
|
+
"format": "prettier --write ./src",
|
|
38
|
+
"format:check": "prettier --check ./src"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"agentConfig": {
|
|
44
|
+
"pluginType": "elizaos:client:1.0.0",
|
|
45
|
+
"pluginParameters": {
|
|
46
|
+
"FARCASTER_DRY_RUN": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"minLength": 1,
|
|
49
|
+
"description": "Expected boolean value to enable or disable dry run mode."
|
|
50
|
+
},
|
|
51
|
+
"FARCASTER_FID": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"minLength": 1,
|
|
54
|
+
"description": "Farcaster fid is required and must be an integer greater than 0."
|
|
55
|
+
},
|
|
56
|
+
"MAX_CAST_LENGTH": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"minLength": 1,
|
|
59
|
+
"description": "Maximum length of a cast, must be an integer."
|
|
60
|
+
},
|
|
61
|
+
"FARCASTER_POLL_INTERVAL": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"minLength": 1,
|
|
64
|
+
"description": "Interval for polling in minutes, must be an integer."
|
|
65
|
+
},
|
|
66
|
+
"ENABLE_POST": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"minLength": 1,
|
|
69
|
+
"description": "Expected boolean value to enable or disable posting."
|
|
70
|
+
},
|
|
71
|
+
"POST_INTERVAL_MIN": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"minLength": 1,
|
|
74
|
+
"description": "Minimum interval between posts in minutes, must be an integer."
|
|
75
|
+
},
|
|
76
|
+
"POST_INTERVAL_MAX": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"minLength": 1,
|
|
79
|
+
"description": "Maximum interval between posts in minutes, must be an integer."
|
|
80
|
+
},
|
|
81
|
+
"ENABLE_ACTION_PROCESSING": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"minLength": 1,
|
|
84
|
+
"description": "Expected boolean value to enable or disable action processing."
|
|
85
|
+
},
|
|
86
|
+
"ACTION_INTERVAL": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"minLength": 1,
|
|
89
|
+
"description": "Interval for action processing in minutes, must be an integer."
|
|
90
|
+
},
|
|
91
|
+
"POST_IMMEDIATELY": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"minLength": 1,
|
|
94
|
+
"description": "Expected boolean value to enable or disable immediate posting."
|
|
95
|
+
},
|
|
96
|
+
"MAX_ACTIONS_PROCESSING": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"minLength": 1,
|
|
99
|
+
"description": "Maximum number of actions to process, must be an integer."
|
|
100
|
+
},
|
|
101
|
+
"ACTION_TIMELINE_TYPE": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"minLength": 1,
|
|
104
|
+
"description": "Type of action timeline, must match an ActionTimelineType enum value."
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"gitHead": "a84e25ee21e33387a1303e62a2f95dc670ffddd4"
|
|
109
|
+
}
|