screeps 4.3.0-beta → 4.3.0-beta.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 +2 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,9 +22,8 @@ npx screeps start
|
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Prerequisites:
|
|
25
|
-
* Node.js
|
|
26
|
-
* Python
|
|
27
|
-
* Build tools (`apt install build-essential` for Ubuntu, [Visual Studio](https://www.visualstudio.com/vs/) for Windows, etc)
|
|
25
|
+
* Node.js 22 LTS or higher
|
|
26
|
+
* Python 3, build tools (see [node-gyp requirements](https://github.com/nodejs/node-gyp))
|
|
28
27
|
|
|
29
28
|
You will be prompted for your Steam Web API key, you can obtain it on [this page](https://steamcommunity.com/dev/apikey).
|
|
30
29
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screeps",
|
|
3
|
-
"version": "4.3.0-beta",
|
|
3
|
+
"version": "4.3.0-beta.2",
|
|
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
9
|
"scripts": {
|
|
10
|
-
"postinstall": "
|
|
10
|
+
"postinstall": "node -e \"process.chdir(require('node_modules-path')())\" && npm explore @screeps/driver -- npx webpack"
|
|
11
11
|
},
|
|
12
12
|
"author": "Artem Chivchalov <contact@screeps.com>",
|
|
13
13
|
"license": "ISC",
|