@blitzreels/cli 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 scoped 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/cli",
3
+ "version": "0.0.0",
4
+ "description": "Scoped command-line interface package for BlitzReels.",
5
+ "bin": {
6
+ "blitzreels-cli": "./bin/blitzreels-cli.js"
7
+ },
8
+ "files": [
9
+ "bin",
10
+ "README.md"
11
+ ],
12
+ "license": "UNLICENSED"
13
+ }