@etothepii/satisfactory-file-parser 0.0.24 → 0.0.26

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 (49) hide show
  1. package/LICENCE.md +21 -0
  2. package/README.md +22 -4
  3. package/dist/index.d.ts +774 -0
  4. package/dist/index.js +1 -0
  5. package/package.json +13 -8
  6. package/build/index.d.ts +0 -19
  7. package/build/index.js +0 -52
  8. package/build/parser/byte/alignment.enum.d.ts +0 -4
  9. package/build/parser/byte/alignment.enum.js +0 -8
  10. package/build/parser/byte/byte-reader.class.d.ts +0 -34
  11. package/build/parser/byte/byte-reader.class.js +0 -121
  12. package/build/parser/byte/byte-writer.class.d.ts +0 -33
  13. package/build/parser/byte/byte-writer.class.js +0 -139
  14. package/build/parser/error/parser.error.d.ts +0 -12
  15. package/build/parser/error/parser.error.js +0 -28
  16. package/build/parser/file.types.d.ts +0 -9
  17. package/build/parser/file.types.js +0 -2
  18. package/build/parser/parser.d.ts +0 -16
  19. package/build/parser/parser.js +0 -88
  20. package/build/parser/satisfactory/blueprint/blueprint-reader.d.ts +0 -18
  21. package/build/parser/satisfactory/blueprint/blueprint-reader.js +0 -124
  22. package/build/parser/satisfactory/blueprint/blueprint-writer.d.ts +0 -15
  23. package/build/parser/satisfactory/blueprint/blueprint-writer.js +0 -63
  24. package/build/parser/satisfactory/blueprint/blueprint.types.d.ts +0 -20
  25. package/build/parser/satisfactory/blueprint/blueprint.types.js +0 -2
  26. package/build/parser/satisfactory/objects/DataFields.d.ts +0 -13
  27. package/build/parser/satisfactory/objects/DataFields.js +0 -224
  28. package/build/parser/satisfactory/objects/ObjectReference.d.ts +0 -9
  29. package/build/parser/satisfactory/objects/ObjectReference.js +0 -17
  30. package/build/parser/satisfactory/objects/Property.d.ts +0 -270
  31. package/build/parser/satisfactory/objects/Property.js +0 -1001
  32. package/build/parser/satisfactory/objects/SaveComponent.d.ts +0 -16
  33. package/build/parser/satisfactory/objects/SaveComponent.js +0 -31
  34. package/build/parser/satisfactory/objects/SaveEntity.d.ts +0 -25
  35. package/build/parser/satisfactory/objects/SaveEntity.js +0 -70
  36. package/build/parser/satisfactory/objects/SaveObject.d.ts +0 -14
  37. package/build/parser/satisfactory/objects/SaveObject.js +0 -29
  38. package/build/parser/satisfactory/save/level.class.d.ts +0 -21
  39. package/build/parser/satisfactory/save/level.class.js +0 -138
  40. package/build/parser/satisfactory/save/satisfactory-save.d.ts +0 -11
  41. package/build/parser/satisfactory/save/satisfactory-save.js +0 -11
  42. package/build/parser/satisfactory/save/save-reader.d.ts +0 -44
  43. package/build/parser/satisfactory/save/save-reader.js +0 -233
  44. package/build/parser/satisfactory/save/save-writer.d.ts +0 -12
  45. package/build/parser/satisfactory/save/save-writer.js +0 -112
  46. package/build/parser/satisfactory/save/save.types.d.ts +0 -49
  47. package/build/parser/satisfactory/save/save.types.js +0 -2
  48. package/build/parser/satisfactory/structs/util.types.d.ts +0 -40
  49. package/build/parser/satisfactory/structs/util.types.js +0 -95
package/LICENCE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 etotheepii
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -89,7 +89,25 @@ fs.writeFileSync('./MyModifiedBlueprint.sbp', Buffer.concat([mainFileHeader!, ..
89
89
  fs.writeFileSync('./MyModifiedSave.sbpcfg', Buffer.from(summary.configFileBinary));
90
90
  ```
91
91
 
92
- ## License
93
- MIT
94
-
95
- The module's code is free to use and open source.
92
+ ## License
93
+ MIT License
94
+
95
+ Copyright (c) 2023 etotheepii
96
+
97
+ Permission is hereby granted, free of charge, to any person obtaining a copy
98
+ of this software and associated documentation files (the "Software"), to deal
99
+ in the Software without restriction, including without limitation the rights
100
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
101
+ copies of the Software, and to permit persons to whom the Software is
102
+ furnished to do so, subject to the following conditions:
103
+
104
+ The above copyright notice and this permission notice shall be included in all
105
+ copies or substantial portions of the Software.
106
+
107
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
108
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
109
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
110
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
111
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
112
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
113
+ SOFTWARE.