erlc-v2 1.1.0 → 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/README.md +575 -572
- package/index.d.ts +429 -430
- package/package.json +7 -7
- package/src/Client.js +460 -465
- package/src/api/LocalApiServer.js +530 -533
- package/src/map/renderPlayerMap.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erlc-v2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Premium, lightweight JavaScript wrapper for the ER:LC API v2.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=18"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"test:map": "node test-map-render.js",
|
|
28
|
-
"dev:api": "node scripts/start-api.js",
|
|
29
|
-
"test:api": "node scripts/check-api.js",
|
|
30
|
-
"test:features": "node scripts/test-features.js"
|
|
31
|
-
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"test:map": "node test-map-render.js",
|
|
28
|
+
"dev:api": "node scripts/start-api.js",
|
|
29
|
+
"test:api": "node scripts/check-api.js",
|
|
30
|
+
"test:features": "node scripts/test-features.js"
|
|
31
|
+
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@napi-rs/canvas": "^0.1.74"
|
|
34
34
|
},
|