screeps 4.2.15 → 4.2.16-rc10

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -8
package/README.md CHANGED
@@ -34,7 +34,7 @@ You will be prompted for your Steam Web API key, you can obtain it on [this page
34
34
  Storage
35
35
  -------
36
36
 
37
- The default built-in storage is based on [LokiJS](http://lokijs.org/) library which allows to embed it in pure JavaScript environments like the Steam game client. It stores all data in the `db.json` file. However, you can manually replace the storage engine with another community solution to improve performance.
37
+ The default built-in storage is based on [LokiJS](http://techfort.github.io/LokiJS/) library which allows to embed it in pure JavaScript environments like the Steam game client. It stores all data in the `db.json` file. However, you can manually replace the storage engine with another community solution to improve performance.
38
38
 
39
39
  See [this step-by-step guide](http://docs.screeps.com/contributed/ps_ubuntu.html) which explains how to install a standalone private server on Ubuntu using MongoDB and Redis as a storage.
40
40
 
@@ -202,4 +202,4 @@ If you want to publish your bot AI to the NPM repository, set `main.js` as the m
202
202
  "main": "src/main.js",
203
203
  "screeps_bot": true
204
204
  }
205
- ```
205
+ ```
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "screeps",
3
- "version": "4.2.15",
3
+ "version": "4.2.16-rc10",
4
4
  "description": "A standalone server for programming game Screeps",
5
5
  "main": "package.json",
6
6
  "bin": {
7
7
  "screeps": "bin/screeps.js"
8
8
  },
9
+ "scripts": {
10
+ "postinstall": "cd ../.. npm explore @screeps/driver -- npx webpack"
11
+ },
9
12
  "author": "Artem Chivchalov <contact@screeps.com>",
10
13
  "license": "ISC",
11
14
  "repository": {
@@ -13,13 +16,13 @@
13
16
  "url": "https://github.com/screeps/screeps.git"
14
17
  },
15
18
  "dependencies": {
16
- "@screeps/backend": "3.2.3",
17
- "@screeps/common": "2.15.3",
18
- "@screeps/driver": "5.2.1",
19
- "@screeps/engine": "^4.2.14",
20
- "@screeps/launcher": "4.1.0",
21
- "@screeps/pathfinding": "0.4.16",
22
- "@screeps/storage": "5.1.1"
19
+ "@screeps/backend": "3.2.4",
20
+ "@screeps/common": "2.15.5",
21
+ "@screeps/driver": "5.2.2",
22
+ "@screeps/engine": "4.2.18",
23
+ "@screeps/launcher": "4.1.1",
24
+ "@screeps/pathfinding": "0.4.17",
25
+ "@screeps/storage": "5.1.2"
23
26
  },
24
27
  "engines": {
25
28
  "node": ">=10.13.0",