prismarine-proxy 1.1.1 → 1.1.2
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/HISTORY.md +4 -0
- package/README.md +2 -2
- package/package.json +4 -4
- package/test/basic.test.js +2 -2
package/HISTORY.md
CHANGED
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Provide features to build low and high level proxies, see https://github.com/Pri
|
|
|
13
13
|
Example of use case :
|
|
14
14
|
* client side proxies :
|
|
15
15
|
* make yourself a bot : do pathfinding like a bot, auto dig things, ...
|
|
16
|
-
* share your world view with a friend using prismarine-
|
|
16
|
+
* share your world view with a friend using prismarine-viewer
|
|
17
17
|
* server side proxies :
|
|
18
18
|
* act as a proxy with many vanilla client servers, with portals or commands to switch
|
|
19
19
|
* change things in server behavior : forbid going to some places, change the blocks, ...
|
|
@@ -58,4 +58,4 @@ proxy.on('outgoing', (data, meta, toClient, toServer) => { // packets outgoing f
|
|
|
58
58
|
})
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
The name of the particles can be found [here](https://minecraft-data.prismarine.js.org/) , make sure to select the version you are playing on at the top then click protocol, more info about packets can be found [here](https://wiki.vg/Protocol
|
|
61
|
+
The name of the particles can be found [here](https://minecraft-data.prismarine.js.org/) , make sure to select the version you are playing on at the top then click protocol, more info about packets can be found [here](https://wiki.vg/Protocol) , make sure to select the version you are working with
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prismarine-proxy",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Provide features to build proxies using Prismarine modules",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"test": "
|
|
7
|
+
"test": "mocha --reporter spec --exit",
|
|
8
8
|
"pretest": "npm run lint",
|
|
9
9
|
"lint": "standard",
|
|
10
10
|
"fix": "standard --fix"
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://github.com/PrismarineJS/prismarine-proxy#readme",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"
|
|
27
|
+
"mocha": "^9.1.3",
|
|
28
28
|
"prismarine-proxy": "file:.",
|
|
29
29
|
"standard": "^16.0.1"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"debug": "^4.3.1",
|
|
33
|
-
"minecraft-data": "^
|
|
33
|
+
"minecraft-data": "^3.0.0",
|
|
34
34
|
"minecraft-packets": "^1.5.0",
|
|
35
35
|
"minecraft-protocol": "^1.13.0"
|
|
36
36
|
}
|