blitzreels 0.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.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # BlitzReels CLI
2
+
3
+ Placeholder package reserved for the public BlitzReels command-line interface.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("BlitzReels CLI is coming soon.");
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "blitzreels",
3
+ "version": "0.0.0",
4
+ "description": "Command-line interface for BlitzReels.",
5
+ "bin": {
6
+ "blitzreels": "bin/blitzreels.js"
7
+ },
8
+ "files": [
9
+ "bin",
10
+ "README.md"
11
+ ],
12
+ "license": "UNLICENSED"
13
+ }