s2cfgtojson 7.0.15 → 7.0.16

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/dist/Struct.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from "./types.mjs";
2
- export * from "./enums.mjs";
1
+ export type * from "./types.mjs";
2
+ export type * from "./enums.mjs";
3
3
  export type Internal = "__internal__" | "fork" | "removeNode" | "addNode" | "clone" | "entries" | "forEach" | "filter" | "map" | "toJson" | "toString";
4
4
  export type InternalPlus = Internal | "fromString" | "fromJson";
5
5
  export interface DefaultEntries {
package/dist/Struct.mjs CHANGED
@@ -1,5 +1,3 @@
1
- export * from "./types.mjs";
2
- export * from "./enums.mjs";
3
1
  const TAB = " ";
4
2
  const WILDCARD = "_wildcard";
5
3
  const KEYWORDS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "7.0.15",
3
+ "version": "7.0.16",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
@@ -56,7 +56,7 @@
56
56
  "build": "node ./scripts/build.mjs",
57
57
  "prepublishOnly": "npm run build",
58
58
  "test": "vitest",
59
- "release:patch": "npm version patch && npm i && npm audit fix && npm run build && npm publish"
59
+ "release:patch": "npm version patch && npm i && npm audit fix && npm run build && npm login && npm publish"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/node": "^24.5.2",