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 CHANGED
@@ -1,5 +1,9 @@
1
1
  ## History
2
2
 
3
+ ### 1.1.2
4
+
5
+ - Update mcdata
6
+
3
7
  ### 1.1.1
4
8
 
5
9
  - Fix bug with InstantConnectProxy to make connecting possible
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-view
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/) , make sure to select the version you are working with
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.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": "jest --verbose",
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
- "jest": "^27.0.4",
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": "^2.94.0",
33
+ "minecraft-data": "^3.0.0",
34
34
  "minecraft-packets": "^1.5.0",
35
35
  "minecraft-protocol": "^1.13.0"
36
36
  }
@@ -1,7 +1,7 @@
1
- /* eslint-env jest */
1
+ /* eslint-env mocha */
2
2
 
3
3
  describe('works', () => {
4
- test('it works', () => {
4
+ it('it works', () => {
5
5
  console.log('done !')
6
6
  })
7
7
  })