@lovrabet/dsparser 1.0.0-beta.2 → 1.0.0-beta.3
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/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/src/utils/test-util.d.ts +1 -0
- package/package.json +6 -4
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { testUtil } from "./src/utils/test-util";
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
function a0_0x3e0e(){var _0x44bf37=['439490fydnRX','117LWZLQj','323056QEOmXN','This\x20is\x20a\x20test\x20function','3aeISKj','14898GKxPHJ','8EwFKKB','4493965VoUkCB','1161730NDcyZH','865xCZbPg','56746QvUxoU','DSParser\x20module\x20loaded','log','6571774CyIlgz'];a0_0x3e0e=function(){return _0x44bf37;};return a0_0x3e0e();}var a0_0x212a14=a0_0x706f;(function(_0x4bdcdf,_0x1b65d7){var _0x45403a=a0_0x706f,_0x1da108=_0x4bdcdf();while(!![]){try{var _0x324306=parseInt(_0x45403a(0x150))/0x1+parseInt(_0x45403a(0x14e))/0x2*(-parseInt(_0x45403a(0x14a))/0x3)+-parseInt(_0x45403a(0x148))/0x4+-parseInt(_0x45403a(0x14f))/0x5*(-parseInt(_0x45403a(0x14b))/0x6)+-parseInt(_0x45403a(0x14d))/0x7*(-parseInt(_0x45403a(0x14c))/0x8)+parseInt(_0x45403a(0x147))/0x9*(parseInt(_0x45403a(0x154))/0xa)+-parseInt(_0x45403a(0x153))/0xb;if(_0x324306===_0x1b65d7)break;else _0x1da108['push'](_0x1da108['shift']());}catch(_0x3712b3){_0x1da108['push'](_0x1da108['shift']());}}}(a0_0x3e0e,0x6b8fe));var testUtil=()=>{var _0x25005b=a0_0x706f;console[_0x25005b(0x152)](_0x25005b(0x149));};console[a0_0x212a14(0x152)](a0_0x212a14(0x151));function a0_0x706f(_0x2a0ed9,_0x56b0f4){var _0x3e0e6c=a0_0x3e0e();return a0_0x706f=function(_0x706fd0,_0x388913){_0x706fd0=_0x706fd0-0x147;var _0x30b8b5=_0x3e0e6c[_0x706fd0];return _0x30b8b5;},a0_0x706f(_0x2a0ed9,_0x56b0f4);}export{testUtil};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const testUtil: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovrabet/dsparser",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -14,20 +14,22 @@
|
|
|
14
14
|
},
|
|
15
15
|
"type": "module",
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "rm -rf dist && bun build index.ts --outdir=dist --target=browser --format=esm && javascript-obfuscator dist --output dist",
|
|
18
|
-
"build:dev": "bun build --watch index.ts --outdir=dist --target=browser --format=esm",
|
|
17
|
+
"build": "rm -rf dist && bun build index.ts --outdir=dist --target=browser --format=esm && javascript-obfuscator dist --output dist && bun run types",
|
|
18
|
+
"build:dev": "rm -rf dist && bun build --watch index.ts --outdir=dist --target=browser --format=esm",
|
|
19
19
|
"start": "bun run build:dev",
|
|
20
20
|
"types": "npx tsc --emitDeclarationOnly --declaration --outDir dist index.ts",
|
|
21
21
|
"beta-release": "bun run build && sh scripts/update-beta-version.sh && git push && git push origin --tag && bun publish",
|
|
22
22
|
"release": "bun run build && bun pm version patch && git push && git push origin --tag && bun publish"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
|
-
"dist"
|
|
25
|
+
"dist",
|
|
26
|
+
"LICENSE"
|
|
26
27
|
],
|
|
27
28
|
"publishConfig": {
|
|
28
29
|
"access": "public"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
32
|
+
"@types/node": "^24.8.1",
|
|
31
33
|
"javascript-obfuscator": "^4.1.1"
|
|
32
34
|
},
|
|
33
35
|
"peerDependencies": {
|