@elizaos/plugin-minecraft 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 +4 -3
- package/registry-entry.json +79 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-minecraft",
|
|
3
3
|
"description": "Minecraft automation plugin for ElizaOS (Mineflayer bridge)",
|
|
4
|
-
"version": "2.0.3-beta.
|
|
4
|
+
"version": "2.0.3-beta.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"files": [
|
|
48
|
+
"registry-entry.json",
|
|
48
49
|
"dist",
|
|
49
50
|
"README.md",
|
|
50
51
|
"package.json"
|
|
@@ -54,7 +55,7 @@
|
|
|
54
55
|
"zod": "^4.4.3"
|
|
55
56
|
},
|
|
56
57
|
"peerDependencies": {
|
|
57
|
-
"@elizaos/core": "2.0.3-beta.
|
|
58
|
+
"@elizaos/core": "2.0.3-beta.4"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"@biomejs/biome": "^2.4.14",
|
|
@@ -125,5 +126,5 @@
|
|
|
125
126
|
}
|
|
126
127
|
}
|
|
127
128
|
},
|
|
128
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
|
|
129
130
|
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "minecraft",
|
|
3
|
+
"name": "Minecraft",
|
|
4
|
+
"description": "Minecraft automation app for driving Mineflayer bots from Eliza agents.",
|
|
5
|
+
"npmName": "@elizaos/plugin-minecraft",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["app", "games", "minecraft", "automation", "mineflayer"],
|
|
9
|
+
"config": {
|
|
10
|
+
"MC_AUTH": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"label": "Auth",
|
|
15
|
+
"help": "Minecraft auth mode (offline/microsoft)",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"MC_HOST": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"label": "Host",
|
|
23
|
+
"help": "Server host address",
|
|
24
|
+
"advanced": false
|
|
25
|
+
},
|
|
26
|
+
"MC_PORT": {
|
|
27
|
+
"type": "number",
|
|
28
|
+
"required": false,
|
|
29
|
+
"sensitive": false,
|
|
30
|
+
"label": "Port",
|
|
31
|
+
"help": "Minecraft server port",
|
|
32
|
+
"advanced": false,
|
|
33
|
+
"min": 1,
|
|
34
|
+
"max": 65535
|
|
35
|
+
},
|
|
36
|
+
"MC_VERSION": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"required": false,
|
|
39
|
+
"sensitive": false,
|
|
40
|
+
"label": "Version",
|
|
41
|
+
"help": "Minecraft version",
|
|
42
|
+
"advanced": false
|
|
43
|
+
},
|
|
44
|
+
"MC_USERNAME": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"required": false,
|
|
47
|
+
"sensitive": false,
|
|
48
|
+
"label": "Username",
|
|
49
|
+
"help": "Minecraft username",
|
|
50
|
+
"advanced": false
|
|
51
|
+
},
|
|
52
|
+
"MC_SERVER_PORT": {
|
|
53
|
+
"type": "number",
|
|
54
|
+
"required": false,
|
|
55
|
+
"sensitive": false,
|
|
56
|
+
"label": "Server Port",
|
|
57
|
+
"help": "Local server port",
|
|
58
|
+
"advanced": false,
|
|
59
|
+
"min": 1,
|
|
60
|
+
"max": 65535
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"render": {
|
|
64
|
+
"visible": true,
|
|
65
|
+
"pinTo": [],
|
|
66
|
+
"style": "card",
|
|
67
|
+
"icon": "Pickaxe",
|
|
68
|
+
"group": "gaming",
|
|
69
|
+
"groupOrder": 11,
|
|
70
|
+
"actions": ["enable", "configure"]
|
|
71
|
+
},
|
|
72
|
+
"resources": {
|
|
73
|
+
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
74
|
+
"repository": "https://github.com/elizaos/eliza"
|
|
75
|
+
},
|
|
76
|
+
"dependsOn": [],
|
|
77
|
+
"kind": "plugin",
|
|
78
|
+
"subtype": "gaming"
|
|
79
|
+
}
|