@etothepii/satisfactory-file-parser 0.4.5 → 0.4.7

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 (51) hide show
  1. package/README.md +1 -1
  2. package/build/index.d.ts +23 -3
  3. package/build/index.js +24 -5
  4. package/build/parser/satisfactory/edit/edit-constants.d.ts +12 -0
  5. package/build/parser/satisfactory/edit/edit-constants.js +12 -0
  6. package/build/parser/satisfactory/objects/DataFields.d.ts +2 -37
  7. package/build/parser/satisfactory/objects/DataFields.js +185 -75
  8. package/build/parser/satisfactory/objects/SaveObject.d.ts +2 -2
  9. package/build/parser/satisfactory/objects/property/generic/ArrayProperty.d.ts +21 -0
  10. package/build/parser/satisfactory/objects/property/generic/ArrayProperty.js +169 -0
  11. package/build/parser/satisfactory/objects/property/generic/BasicProperty.d.ts +25 -0
  12. package/build/parser/satisfactory/objects/property/generic/BasicProperty.js +27 -0
  13. package/build/parser/satisfactory/objects/property/generic/BoolProperty.d.ts +13 -0
  14. package/build/parser/satisfactory/objects/property/generic/BoolProperty.js +30 -0
  15. package/build/parser/satisfactory/objects/property/generic/ByteProperty.d.ts +17 -0
  16. package/build/parser/satisfactory/objects/property/generic/ByteProperty.js +50 -0
  17. package/build/parser/satisfactory/objects/property/generic/DoubleProperty.d.ts +13 -0
  18. package/build/parser/satisfactory/objects/property/generic/DoubleProperty.js +30 -0
  19. package/build/parser/satisfactory/objects/property/generic/EnumProperty.d.ts +19 -0
  20. package/build/parser/satisfactory/objects/property/generic/EnumProperty.js +33 -0
  21. package/build/parser/satisfactory/objects/property/generic/FloatProperty.d.ts +13 -0
  22. package/build/parser/satisfactory/objects/property/generic/FloatProperty.js +30 -0
  23. package/build/parser/satisfactory/objects/property/generic/Int32Property.d.ts +13 -0
  24. package/build/parser/satisfactory/objects/property/generic/Int32Property.js +30 -0
  25. package/build/parser/satisfactory/objects/property/generic/Int64Property.d.ts +13 -0
  26. package/build/parser/satisfactory/objects/property/generic/Int64Property.js +30 -0
  27. package/build/parser/satisfactory/objects/property/generic/Int8Property.d.ts +13 -0
  28. package/build/parser/satisfactory/objects/property/generic/Int8Property.js +30 -0
  29. package/build/parser/satisfactory/objects/property/generic/MapProperty.d.ts +21 -0
  30. package/build/parser/satisfactory/objects/property/generic/MapProperty.js +160 -0
  31. package/build/parser/satisfactory/objects/property/generic/ObjectProperty.d.ts +14 -0
  32. package/build/parser/satisfactory/objects/property/generic/ObjectProperty.js +35 -0
  33. package/build/parser/satisfactory/objects/property/generic/SetProperty.d.ts +11 -0
  34. package/build/parser/satisfactory/objects/property/generic/SetProperty.js +89 -0
  35. package/build/parser/satisfactory/objects/property/generic/SoftObjectProperty.d.ts +12 -0
  36. package/build/parser/satisfactory/objects/property/generic/SoftObjectProperty.js +25 -0
  37. package/build/parser/satisfactory/objects/property/generic/StrProperty.d.ts +13 -0
  38. package/build/parser/satisfactory/objects/property/generic/StrProperty.js +30 -0
  39. package/build/parser/satisfactory/objects/property/generic/StructProperty.d.ts +69 -0
  40. package/build/parser/satisfactory/objects/property/generic/StructProperty.js +340 -0
  41. package/build/parser/satisfactory/objects/property/generic/TextProperty.d.ts +29 -0
  42. package/build/parser/satisfactory/objects/property/generic/TextProperty.js +109 -0
  43. package/build/parser/satisfactory/objects/property/generic/Uint32Property.d.ts +13 -0
  44. package/build/parser/satisfactory/objects/property/generic/Uint32Property.js +30 -0
  45. package/build/parser/satisfactory/objects/property/generic/Uint64Property.d.ts +13 -0
  46. package/build/parser/satisfactory/objects/property/generic/Uint64Property.js +30 -0
  47. package/build/parser/satisfactory/objects/property/generic/Uint8Property.d.ts +13 -0
  48. package/build/parser/satisfactory/objects/property/generic/Uint8Property.js +30 -0
  49. package/build/parser/satisfactory/objects/property/special/SpecialAnyProperty.d.ts +49 -0
  50. package/build/parser/satisfactory/objects/property/special/SpecialAnyProperty.js +2 -0
  51. package/package.json +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@etothepii/satisfactory-file-parser",
3
3
  "author": "etothepii",
4
- "version": "0.4.5",
4
+ "version": "0.4.7",
5
5
  "description": "A file parser for satisfactory files. Includes save files and blueprint files.",
6
6
  "types": "./build/index.d.ts",
7
7
  "main": "./build/index.js",
@@ -14,7 +14,7 @@
14
14
  "typescript"
15
15
  ],
16
16
  "scripts": {
17
- "test": "jest --config=jest.config.json --max_old_space_size=30720",
17
+ "test": "set PARSER_DEBUG=debug&& jest --config=jest.config.json --max_old_space_size=30720",
18
18
  "build": "tsc && npm run bundle",
19
19
  "bundle": "npx webpack && dts-bundle-generator -o dist/index.d.ts src/index.ts",
20
20
  "prepublishOnly": "npm run build && npm version patch"