steamutils 1.3.45 → 1.3.47
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.json +30 -0
- package/.idea/codeStyles/Project.xml +58 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jsLinters/eslint.xml +6 -0
- package/.idea/prettier.xml +7 -0
- package/.prettierrc.json +3 -0
- package/SteamClient.js +2365 -2337
- package/package.json +6 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "steamutils",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.47",
|
4
4
|
"main": "index.js",
|
5
5
|
"dependencies": {
|
6
6
|
"alpha-common-utils": "^1.0.5",
|
@@ -24,5 +24,9 @@
|
|
24
24
|
"xml-js": "^1.6.11",
|
25
25
|
"xml2js": "^0.6.2"
|
26
26
|
},
|
27
|
-
"type": "module"
|
27
|
+
"type": "module",
|
28
|
+
"devDependencies": {
|
29
|
+
"eslint-config-prettier": "^9.1.0",
|
30
|
+
"eslint-plugin-prettier": "^5.1.3"
|
31
|
+
}
|
28
32
|
}
|