bazaar.it 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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/bin/baz.js +2 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # bazaar.it
2
+
3
+ AI-powered motion graphics from the command line.
4
+
5
+ Visit [bazaar.it](https://bazaar.it) for more info.
package/bin/baz.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("bazaar.it CLI — coming soon. Visit https://bazaar.it for more info.");
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "bazaar.it",
3
+ "version": "0.1.0",
4
+ "description": "AI-powered motion graphics from the command line — bazaar.it",
5
+ "bin": {
6
+ "baz": "./bin/baz.js"
7
+ },
8
+ "keywords": ["video", "ai", "motion-graphics", "remotion", "cli", "bazaar"],
9
+ "author": "Markus Hogne <markus@bazaar.it>",
10
+ "license": "MIT",
11
+ "homepage": "https://bazaar.it",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/bazaar-it/bazaar-vid"
15
+ },
16
+ "engines": {
17
+ "node": ">=18"
18
+ }
19
+ }