imferno 1.1.0 → 2.0.0

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 +3 -6
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # imferno
2
2
 
3
- SMPTE ST 2067 IMF validator and inspector. Prebuilt native binaries for all major platforms.
3
+ SMPTE ST 2067 IMF validator. Prebuilt native binaries for all major platforms.
4
4
 
5
5
  ## Install
6
6
 
@@ -11,7 +11,7 @@ npm install -g imferno
11
11
  Or use directly with npx:
12
12
 
13
13
  ```bash
14
- npx imferno validate ./my-imf-package
14
+ npx imferno@latest validate ./my-imf-package
15
15
  ```
16
16
 
17
17
  ## Usage
@@ -20,11 +20,8 @@ npx imferno validate ./my-imf-package
20
20
  # Validate an IMF package
21
21
  imferno validate ./path/to/imf/package
22
22
 
23
- # Inspect package structure
24
- imferno inspect ./path/to/imf/package
25
-
26
23
  # Show detailed CPL information
27
- imferno cpl <uuid> ./path/to/imf/package
24
+ imferno cpl ./path/to/imf/package
28
25
 
29
26
  # Export a full report
30
27
  imferno export ./path/to/imf/package
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "imferno",
3
- "version": "1.1.0",
4
- "description": "SMPTE ST 2067 IMF validator and inspector",
3
+ "version": "2.0.0",
4
+ "description": "SMPTE ST 2067 IMF validator",
5
5
  "bin": {
6
6
  "imferno": "bin/imferno.js"
7
7
  },
@@ -11,12 +11,12 @@
11
11
  "LICENSE"
12
12
  ],
13
13
  "optionalDependencies": {
14
- "@imferno/linux-x64-gnu": "1.1.0",
15
- "@imferno/linux-arm64-gnu": "1.1.0",
16
- "@imferno/darwin-x64": "1.1.0",
17
- "@imferno/darwin-arm64": "1.1.0",
18
- "@imferno/win32-x64-msvc": "1.1.0",
19
- "@imferno/win32-arm64-msvc": "1.1.0"
14
+ "@imferno/linux-x64-gnu": "2.0.0",
15
+ "@imferno/linux-arm64-gnu": "2.0.0",
16
+ "@imferno/darwin-x64": "2.0.0",
17
+ "@imferno/darwin-arm64": "2.0.0",
18
+ "@imferno/win32-x64-msvc": "2.0.0",
19
+ "@imferno/win32-arm64-msvc": "2.0.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "public"