@mediaproc/cli 0.1.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.
- package/LICENSE +72 -0
- package/README.md +947 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +51 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/add.d.ts +4 -0
- package/dist/commands/add.d.ts.map +1 -0
- package/dist/commands/add.js +170 -0
- package/dist/commands/add.js.map +1 -0
- package/dist/commands/config.d.ts +3 -0
- package/dist/commands/config.d.ts.map +1 -0
- package/dist/commands/config.js +50 -0
- package/dist/commands/config.js.map +1 -0
- package/dist/commands/help.d.ts +3 -0
- package/dist/commands/help.d.ts.map +1 -0
- package/dist/commands/help.js +55 -0
- package/dist/commands/help.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +57 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/list.d.ts +4 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +30 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/remove.d.ts +4 -0
- package/dist/commands/remove.d.ts.map +1 -0
- package/dist/commands/remove.js +38 -0
- package/dist/commands/remove.js.map +1 -0
- package/dist/commands/run.d.ts +3 -0
- package/dist/commands/run.d.ts.map +1 -0
- package/dist/commands/run.js +16 -0
- package/dist/commands/run.js.map +1 -0
- package/dist/commands/validate.d.ts +3 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +16 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/plugin-api.d.ts +45 -0
- package/dist/plugin-api.d.ts.map +1 -0
- package/dist/plugin-api.js +2 -0
- package/dist/plugin-api.js.map +1 -0
- package/dist/plugin-manager.d.ts +31 -0
- package/dist/plugin-manager.d.ts.map +1 -0
- package/dist/plugin-manager.js +88 -0
- package/dist/plugin-manager.js.map +1 -0
- package/dist/plugin-registry.d.ts +27 -0
- package/dist/plugin-registry.d.ts.map +1 -0
- package/dist/plugin-registry.js +167 -0
- package/dist/plugin-registry.js.map +1 -0
- package/dist/types.d.ts +36 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +72 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 0xshariq (https://github.com/0xshariq)
|
|
4
|
+
|
|
5
|
+
Original Author: 0xshariq
|
|
6
|
+
Project: MediaProc - Universal Media Processing CLI
|
|
7
|
+
Repository: https://github.com/0xshariq/mediaproc-cli
|
|
8
|
+
|
|
9
|
+
================================================================================
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
================================================================================
|
|
30
|
+
|
|
31
|
+
ATTRIBUTION REQUIREMENTS:
|
|
32
|
+
|
|
33
|
+
1. You MUST retain the above copyright notice in all copies or substantial
|
|
34
|
+
portions of the Software.
|
|
35
|
+
|
|
36
|
+
2. You MUST give appropriate credit to the original author (0xshariq) when:
|
|
37
|
+
|
|
38
|
+
- Distributing the Software or derivative works
|
|
39
|
+
- Using the Software in commercial products
|
|
40
|
+
- Publishing modified versions
|
|
41
|
+
- Including the Software in larger projects
|
|
42
|
+
|
|
43
|
+
3. Suggested attribution format:
|
|
44
|
+
"Powered by MediaProc (https://github.com/0xshariq/mediaproc-cli)
|
|
45
|
+
Created by 0xshariq"
|
|
46
|
+
|
|
47
|
+
4. Contributors to this project retain copyright on their individual
|
|
48
|
+
contributions while agreeing to license them under this MIT License.
|
|
49
|
+
|
|
50
|
+
================================================================================
|
|
51
|
+
|
|
52
|
+
PERMISSIONS SUMMARY:
|
|
53
|
+
|
|
54
|
+
✓ Commercial use
|
|
55
|
+
✓ Modification
|
|
56
|
+
✓ Distribution
|
|
57
|
+
✓ Private use
|
|
58
|
+
✓ Patent use (if applicable)
|
|
59
|
+
|
|
60
|
+
✓ You can fork and create derivative works
|
|
61
|
+
✓ You can use it in proprietary software
|
|
62
|
+
✓ You can sublicense under different terms
|
|
63
|
+
✓ You can use it without restriction
|
|
64
|
+
|
|
65
|
+
✗ No warranty provided
|
|
66
|
+
✗ Authors not liable for damages
|
|
67
|
+
✗ Copyright notice must be included
|
|
68
|
+
|
|
69
|
+
================================================================================
|
|
70
|
+
|
|
71
|
+
For questions about licensing, please open an issue at:
|
|
72
|
+
https://github.com/0xshariq/mediaproc-cli/issues
|