roxify 1.12.7 → 1.12.8

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,113 +1,111 @@
1
- {
2
- "name": "roxify",
3
- "version": "1.12.7",
4
- "type": "module",
5
- "description": "Ultra-lightweight PNG steganography with native Rust acceleration. Encode binary data into PNG images with zstd compression.",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "rox": "dist/cli.js",
10
- "roxify": "dist/cli.js"
11
- },
12
- "files": [
13
- "dist",
14
- "roxify_native-x86_64-unknown-linux-gnu.node",
15
- "roxify_native-i686-unknown-linux-gnu.node",
16
- "roxify_native-aarch64-unknown-linux-gnu.node",
17
- "roxify_native-x86_64-apple-darwin.node",
18
- "roxify_native-aarch64-apple-darwin.node",
19
- "roxify_native-x86_64-pc-windows-msvc.node",
20
- "roxify_native-i686-pc-windows-msvc.node",
21
- "roxify_native-aarch64-pc-windows-msvc.node",
22
- "roxify_native-x86_64-pc-windows-gnu.node",
23
- "libroxify_native-x86_64-unknown-linux-gnu.node",
24
- "libroxify_native-i686-unknown-linux-gnu.node",
25
- "libroxify_native-aarch64-unknown-linux-gnu.node",
26
- "libroxify_native-x86_64-apple-darwin.node",
27
- "libroxify_native-aarch64-apple-darwin.node",
28
- "dist/roxify_native.exe",
29
- "dist/roxify_native",
30
- "dist/roxify_native-macos-arm64",
31
- "dist/roxify_native-macos-x64",
32
- "dist/rox-macos-universal",
33
- "scripts/postinstall.cjs",
34
- "README.md",
35
- "LICENSE"
36
- ],
37
- "scripts": {
38
- "build": "tsc",
39
- "prebuild:pkg": "node scripts/copy-cli-binary.js",
40
- "build:native": "cargo build --release --lib",
41
- "build:native:linux": "cargo build --release --lib --target x86_64-unknown-linux-gnu",
42
- "build:native:macos-x64": "cargo build --release --lib --target x86_64-apple-darwin",
43
- "build:native:macos-arm": "cargo build --release --lib --target aarch64-apple-darwin",
44
- "build:native:windows": "cargo build --release --lib --target x86_64-pc-windows-msvc",
45
- "build:cli": "cargo build --release --bin roxify_native && cp target/release/roxify_native dist/roxify-cli",
46
- "build:cli:windows": "cargo build --release --bin roxify_native --target x86_64-pc-windows-gnu && node scripts/copy-cli-binary.js",
47
- "build:all": "npm run build:native && npm run build && npm run build:cli",
48
- "build:cross": "node scripts/build-all-platforms.js && npm run build && npm run build:cli",
49
- "build:native:fast": "cargo build -p roxify_native --release --lib --no-default-features",
50
- "build:native:quick-release": "FAST_RELEASE=1 cargo build --profile fastdev -p roxify_native --lib --no-default-features",
51
- "build:native:super-fast": "USE_SYSTEM_ZSTD=1 FAST_RELEASE=1 cargo build --profile fastdev -p roxify_native --lib --no-default-features -j 1",
52
- "build:native:low-cpu": "LOW_CPU=1 USE_SYSTEM_ZSTD=1 FAST_RELEASE=1 MAX_JOBS=1 node scripts/build-native-targets.cjs",
53
- "build:native:targets": "node scripts/build-native-targets.cjs",
54
- "build:native:targets:fast": "FAST_RELEASE=1 node scripts/build-native-targets.cjs",
55
- "build:pkg": "npm run build && npx pkg . --target node18-win-x64 --output dist/rox.exe --compress Brotli --public",
56
- "postbuild:native": "node scripts/copy-native.js",
57
- "clean:targets": "node scripts/clean-artifacts.js",
58
- "release:prepare": "npm run build && npm run build:native:targets && node scripts/prepare-release.cjs",
59
- "release:github": "npm run release:prepare && node scripts/create-gh-release.cjs",
60
- "package:prepare": "npm run build && npm run build:native:targets && node scripts/pack-npm.cjs",
61
- "publish:npm": "npm run package:prepare && echo 'Run npm publish --access public'",
62
- "release:flow": "node scripts/release-flow.cjs",
63
- "release:flow:auto": "AUTO_PUBLISH=1 node scripts/release-flow.cjs",
64
- "release:full": "node scripts/publish.cjs",
65
- "postinstall": "node scripts/postinstall.cjs",
66
- "prepublishOnly": "npx -p typescript tsc || echo 'TS build skipped'",
67
- "test": "npm run build && node ./test/run-all-tests.cjs",
68
- "test:integration": "node scripts/run-integration-tests.cjs",
69
- "cli": "node dist/cli.js"
70
- },
71
- "pkg": {
72
- "targets": [
73
- "node18-win-x64"
74
- ],
75
- "outputPath": "dist",
76
- "scripts": [
77
- "dist/**/*.js"
78
- ],
79
- "assets": [
80
- "dist/roxify_native.exe"
81
- ]
82
- },
83
- "repository": {
84
- "type": "git",
85
- "url": "https://github.com/RoxasYTB/roxify.git"
86
- },
87
- "keywords": [
88
- "steganography",
89
- "png",
90
- "compression",
91
- "zstd",
92
- "rust",
93
- "native",
94
- "encode",
95
- "decode",
96
- "binary",
97
- "lightweight"
98
- ],
99
- "author": "",
100
- "license": "SEE LICENSE IN LICENSE",
101
- "devDependencies": {
102
- "@types/cli-progress": "^3.11.6",
103
- "@types/node": "^22.0.0",
104
- "pkg": "^5.8.1",
105
- "typescript": "^5.6.0"
106
- },
107
- "engines": {
108
- "node": ">=18.0.0"
109
- },
110
- "dependencies": {
111
- "cli-progress": "^3.12.0"
112
- }
113
- }
1
+ {
2
+ "name": "roxify",
3
+ "version": "1.12.8",
4
+ "type": "module",
5
+ "description": "Ultra-lightweight PNG steganography with native Rust acceleration. Encode binary data into PNG images with zstd compression.",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "rox": "dist/cli.js",
10
+ "roxify": "dist/cli.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "roxify_native-x86_64-unknown-linux-gnu.node",
15
+ "roxify_native-i686-unknown-linux-gnu.node",
16
+ "roxify_native-aarch64-unknown-linux-gnu.node",
17
+ "roxify_native-x86_64-apple-darwin.node",
18
+ "roxify_native-aarch64-apple-darwin.node",
19
+ "roxify_native-x86_64-pc-windows-msvc.node",
20
+ "roxify_native-i686-pc-windows-msvc.node",
21
+ "roxify_native-aarch64-pc-windows-msvc.node",
22
+ "roxify_native-x86_64-pc-windows-gnu.node",
23
+ "libroxify_native-x86_64-unknown-linux-gnu.node",
24
+ "libroxify_native-i686-unknown-linux-gnu.node",
25
+ "libroxify_native-aarch64-unknown-linux-gnu.node",
26
+ "libroxify_native-x86_64-apple-darwin.node",
27
+ "libroxify_native-aarch64-apple-darwin.node",
28
+ "dist/roxify_native.exe",
29
+ "dist/roxify_native",
30
+ "dist/roxify_native-macos-arm64",
31
+ "dist/roxify_native-macos-x64",
32
+ "dist/rox-macos-universal",
33
+ "scripts/postinstall.cjs",
34
+ "native",
35
+ "Cargo.toml",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "scripts": {
40
+ "build": "tsc",
41
+ "prebuild:pkg": "node scripts/copy-cli-binary.js",
42
+ "build:native": "cargo build --release --lib",
43
+ "build:native:linux": "cargo build --release --lib --target x86_64-unknown-linux-gnu",
44
+ "build:native:macos-x64": "cargo build --release --lib --target x86_64-apple-darwin",
45
+ "build:native:macos-arm": "cargo build --release --lib --target aarch64-apple-darwin",
46
+ "build:native:windows": "cargo build --release --lib --target x86_64-pc-windows-msvc",
47
+ "build:cli": "cargo build --release --bin roxify_native && cp target/release/roxify_native dist/roxify-cli",
48
+ "build:cli:windows": "cargo build --release --bin roxify_native --target x86_64-pc-windows-gnu && node scripts/copy-cli-binary.js",
49
+ "build:all": "npm run build:native && npm run build && npm run build:cli",
50
+ "build:cross": "node scripts/build-all-platforms.js && npm run build && npm run build:cli",
51
+ "build:native:fast": "cargo build -p roxify_native --release --lib --no-default-features",
52
+ "build:native:quick-release": "FAST_RELEASE=1 cargo build --profile fastdev -p roxify_native --lib --no-default-features",
53
+ "build:native:super-fast": "USE_SYSTEM_ZSTD=1 FAST_RELEASE=1 cargo build --profile fastdev -p roxify_native --lib --no-default-features -j 1",
54
+ "build:native:low-cpu": "LOW_CPU=1 USE_SYSTEM_ZSTD=1 FAST_RELEASE=1 MAX_JOBS=1 node scripts/build-native-targets.cjs",
55
+ "build:native:targets": "node scripts/build-native-targets.cjs",
56
+ "build:native:targets:fast": "FAST_RELEASE=1 node scripts/build-native-targets.cjs",
57
+ "build:pkg": "npm run build && npx pkg . --target node18-win-x64 --output dist/rox.exe --compress Brotli --public",
58
+ "postbuild:native": "node scripts/copy-native.js",
59
+ "clean:targets": "node scripts/clean-artifacts.js",
60
+ "release:prepare": "npm run build && npm run build:native:targets && node scripts/prepare-release.cjs",
61
+ "release:github": "npm run release:prepare && node scripts/create-gh-release.cjs",
62
+ "package:prepare": "npm run build && npm run build:native:targets && node scripts/pack-npm.cjs",
63
+ "publish:npm": "npm run package:prepare && echo 'Run npm publish --access public'",
64
+ "release:flow": "node scripts/release-flow.cjs",
65
+ "release:flow:auto": "AUTO_PUBLISH=1 node scripts/release-flow.cjs",
66
+ "release:full": "node scripts/publish.cjs",
67
+ "postinstall": "node scripts/postinstall.cjs",
68
+ "prepublishOnly": "npx -p typescript tsc || echo 'TS build skipped'",
69
+ "test": "npm run build && node ./test/run-all-tests.cjs",
70
+ "test:integration": "node scripts/run-integration-tests.cjs",
71
+ "cli": "node dist/cli.js"
72
+ },
73
+ "pkg": {
74
+ "targets": [
75
+ "node18-win-x64"
76
+ ],
77
+ "outputPath": "dist",
78
+ "scripts": [
79
+ "dist/**/*.js"
80
+ ],
81
+ "assets": [
82
+ "dist/roxify_native.exe"
83
+ ]
84
+ },
85
+ "repository": {
86
+ "type": "git",
87
+ "url": "https://github.com/RoxasYTB/roxify.git"
88
+ },
89
+ "keywords": [
90
+ "steganography",
91
+ "png",
92
+ "compression",
93
+ "zstd",
94
+ "rust",
95
+ "native",
96
+ "encode",
97
+ "decode",
98
+ "binary",
99
+ "lightweight"
100
+ ],
101
+ "author": "",
102
+ "license": "SEE LICENSE IN LICENSE",
103
+ "devDependencies": {
104
+ "@types/node": "^22.0.0",
105
+ "pkg": "^5.8.1",
106
+ "typescript": "^5.6.0"
107
+ },
108
+ "engines": {
109
+ "node": ">=18.0.0"
110
+ }
111
+ }