typed-factorio 1.14.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "typed-factorio",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.16.0",
|
4
4
|
"description": "Featureful typescript definitions for the the Factorio modding lua api.",
|
5
5
|
"keywords": [
|
6
6
|
"factorio",
|
@@ -33,30 +33,28 @@
|
|
33
33
|
"typescript-to-lua": "^1.6.1"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
|
-
"@types/jest": "^29.
|
37
|
-
"@types/node": "^
|
38
|
-
"@types/prettier": "^2.7.
|
39
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
40
|
-
"@typescript-eslint/parser": "^5.
|
36
|
+
"@types/jest": "^29.5.2",
|
37
|
+
"@types/node": "^20.3.1",
|
38
|
+
"@types/prettier": "^2.7.3",
|
39
|
+
"@typescript-eslint/eslint-plugin": "^5.59.11",
|
40
|
+
"@typescript-eslint/parser": "^5.59.11",
|
41
41
|
"array.prototype.flatmap": "^1.3.1",
|
42
42
|
"chalk": "^5.2.0",
|
43
|
-
"eslint": "~8.
|
44
|
-
"eslint-config-prettier": "^8.
|
45
|
-
"eslint-
|
46
|
-
"eslint-
|
43
|
+
"eslint": "~8.42.0",
|
44
|
+
"eslint-config-prettier": "^8.8.0",
|
45
|
+
"eslint-import-resolver-typescript": "^3.5.5",
|
46
|
+
"eslint-plugin-eslint-comments": "latest",
|
47
47
|
"eslint-plugin-import": "^2.27.5",
|
48
|
-
"eslint-plugin-n": "^15.6.1",
|
49
48
|
"eslint-plugin-node": "^11.1.0",
|
50
49
|
"eslint-plugin-prettier": "^4.2.1",
|
51
|
-
"
|
52
|
-
"jest": "^29.4.3",
|
50
|
+
"jest": "^29.5.0",
|
53
51
|
"lua-types": "^2.13.1",
|
54
|
-
"prettier": "^2.8.
|
55
|
-
"rimraf": "^
|
56
|
-
"ts-jest": "^29.0
|
52
|
+
"prettier": "^2.8.8",
|
53
|
+
"rimraf": "^5.0.1",
|
54
|
+
"ts-jest": "^29.1.0",
|
57
55
|
"ts-node": "^10.9.1",
|
58
|
-
"typescript": "~
|
59
|
-
"typescript-to-lua": "^1.
|
56
|
+
"typescript": "~5.1.3",
|
57
|
+
"typescript-to-lua": "^1.16.2"
|
60
58
|
},
|
61
59
|
"packageManager": "yarn@3.2.3"
|
62
60
|
}
|
@@ -15,7 +15,7 @@ type float = number
|
|
15
15
|
type double = number
|
16
16
|
|
17
17
|
/**
|
18
|
-
* 32-bit signed integer. Possible values are -2
|
18
|
+
* 32-bit signed integer. Possible values are -2'147'483'648 to 2'147'483'647.
|
19
19
|
* @see {@link https://lua-api.factorio.com/latest/Builtin-Types.html#int Online documentation}
|
20
20
|
*/
|
21
21
|
type int = number
|
@@ -27,7 +27,7 @@ type int = number
|
|
27
27
|
type int8 = number
|
28
28
|
|
29
29
|
/**
|
30
|
-
* 32-bit unsigned integer. Possible values are 0 to 4
|
30
|
+
* 32-bit unsigned integer. Possible values are 0 to 4'294'967'295.
|
31
31
|
* @see {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint Online documentation}
|
32
32
|
*/
|
33
33
|
type uint = number
|
@@ -45,7 +45,7 @@ type uint8 = number
|
|
45
45
|
type uint16 = number
|
46
46
|
|
47
47
|
/**
|
48
|
-
* 64-bit unsigned integer. Possible values are 0 to 18
|
48
|
+
* 64-bit unsigned integer. Possible values are 0 to 18'446'744'073'709'551'615.
|
49
49
|
* @see {@link https://lua-api.factorio.com/latest/Builtin-Types.html#uint64 Online documentation}
|
50
50
|
*/
|
51
51
|
type uint64 = number
|