imferno 2.3.0 → 2.3.1-beta.264b7b3

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 (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -17,14 +17,17 @@ npx imferno@latest validate ./my-imf-package
17
17
  ## Usage
18
18
 
19
19
  ```bash
20
- # Validate an IMF package
20
+ # Validate an IMF package (hashes verified by default)
21
21
  imferno validate ./path/to/imf/package
22
22
 
23
23
  # Show detailed CPL information
24
24
  imferno cpl ./path/to/imf/package
25
25
 
26
- # Export a full report
27
- imferno export ./path/to/imf/package
26
+ # JSON output
27
+ imferno validate ./path/to/imf/package --format json
28
+
29
+ # Skip hash verification
30
+ imferno validate ./path/to/imf/package --skip-hashes
28
31
 
29
32
  # Show version
30
33
  imferno --version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imferno",
3
- "version": "2.3.0",
3
+ "version": "2.3.1-beta.264b7b3",
4
4
  "description": "SMPTE ST 2067 IMF validator",
5
5
  "bin": {
6
6
  "imferno": "bin/imferno.js"
@@ -11,12 +11,12 @@
11
11
  "LICENSE"
12
12
  ],
13
13
  "optionalDependencies": {
14
- "@imferno/linux-x64-gnu": "2.3.0",
15
- "@imferno/linux-arm64-gnu": "2.3.0",
16
- "@imferno/darwin-x64": "2.3.0",
17
- "@imferno/darwin-arm64": "2.3.0",
18
- "@imferno/win32-x64-msvc": "2.3.0",
19
- "@imferno/win32-arm64-msvc": "2.3.0"
14
+ "@imferno/linux-x64-gnu": "2.3.1-beta.264b7b3",
15
+ "@imferno/linux-arm64-gnu": "2.3.1-beta.264b7b3",
16
+ "@imferno/darwin-x64": "2.3.1-beta.264b7b3",
17
+ "@imferno/darwin-arm64": "2.3.1-beta.264b7b3",
18
+ "@imferno/win32-x64-msvc": "2.3.1-beta.264b7b3",
19
+ "@imferno/win32-arm64-msvc": "2.3.1-beta.264b7b3"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "public"