javascript-obfuscator 5.4.0 → 5.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-obfuscator",
3
- "version": "5.4.0",
3
+ "version": "5.4.1",
4
4
  "description": "JavaScript obfuscator",
5
5
  "keywords": [
6
6
  "obfuscator",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "types": "typings/index.d.ts",
23
23
  "dependencies": {
24
- "@javascript-obfuscator/escodegen": "2.4.0",
24
+ "@javascript-obfuscator/escodegen": "2.4.1",
25
25
  "@javascript-obfuscator/estraverse": "5.4.0",
26
26
  "@vercel/blob": ">=0.23.0",
27
27
  "acorn": "8.15.0",
@@ -41,7 +41,6 @@
41
41
  "multimatch": "5.0.0",
42
42
  "process": "0.11.10",
43
43
  "reflect-metadata": "0.2.2",
44
- "source-map-support": "0.5.21",
45
44
  "string-template": "1.0.0",
46
45
  "stringz": "2.1.0",
47
46
  "tslib": "2.8.1"
@@ -85,11 +84,13 @@
85
84
  "js-beautify": "1.15.4",
86
85
  "mocha": "11.7.4",
87
86
  "nyc": "17.1.0",
87
+ "parse5": "^8.0.0",
88
88
  "pjson": "1.0.9",
89
89
  "prettier": "3.6.2",
90
90
  "rimraf": "6.0.1",
91
91
  "sinon": "19.0.2",
92
92
  "source-map-resolve": "0.6.0",
93
+ "source-map-support": "0.5.21",
93
94
  "terser": "5.44.0",
94
95
  "threads": "1.7.0",
95
96
  "ts-loader": "9.5.4",
@@ -131,7 +132,10 @@
131
132
  "author": {
132
133
  "name": "Timofei Kachalov"
133
134
  },
134
- "contributors": ["Timofei Kachalov (https://github.com/sanex3339)", "Dmitry Zamotkin (https://github.com/zamotkin)"],
135
+ "contributors": [
136
+ "Timofei Kachalov (https://github.com/sanex3339)",
137
+ "Dmitry Zamotkin (https://github.com/zamotkin)"
138
+ ],
135
139
  "license": "BSD-2-Clause",
136
140
  "packageManager": "yarn@1.22.21+sha512.ca75da26c00327d26267ce33536e5790f18ebd53266796fbb664d2a4a5116308042dd8ee7003b276a20eace7d3c5561c3577bdd71bcb67071187af124779620a"
137
141
  }
@@ -1,7 +1,7 @@
1
1
  export declare class Utils {
2
2
  static readonly baseMultipleSourcesIdentifiersPrefix: string;
3
3
  static readonly hexadecimalPrefix: string;
4
- static readonly nodeRequire: NodeRequire;
4
+ static get nodeRequire(): NodeRequire;
5
5
  static buildVersionMessage(version?: string, buildTimestamp?: string): string;
6
6
  static extractDomainFrom(url: string): string;
7
7
  static getIdentifiersPrefixForMultipleSources(identifiersPrefix: string | undefined, sourceCodeIndex: number): string;