@blitzreels/cli 0.0.0 → 0.1.1

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 CHANGED
@@ -1,3 +1,26 @@
1
1
  # @blitzreels/cli
2
2
 
3
- Placeholder package reserved for the scoped BlitzReels command-line interface.
3
+ Scoped wrapper for the primary `blitzreels` CLI package.
4
+
5
+ Official website: https://blitzreels.com/
6
+
7
+ This CLI is designed for AI agents to edit videos inside BlitzReels.
8
+
9
+ Use this package when you prefer a scoped npm install name. The primary command
10
+ surface is the same as `blitzreels`.
11
+
12
+ ## Usage
13
+
14
+ After the first real publish:
15
+
16
+ ```bash
17
+ npx @blitzreels/cli auth login
18
+ npx @blitzreels/cli auth whoami
19
+ npx @blitzreels/cli api docs
20
+ ```
21
+
22
+ For most users, the recommended package is still:
23
+
24
+ ```bash
25
+ npx blitzreels auth login
26
+ ```
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import "blitzreels";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,YAAY,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import "blitzreels";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,13 +1,43 @@
1
1
  {
2
2
  "name": "@blitzreels/cli",
3
- "version": "0.0.0",
4
- "description": "Scoped command-line interface package for BlitzReels.",
3
+ "version": "0.1.1",
4
+ "description": "Scoped CLI package for AI agents to edit videos inside BlitzReels.",
5
+ "homepage": "https://blitzreels.com/",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/blitzreels/blitzreels.git",
9
+ "directory": "packages/scoped-cli"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/blitzreels/blitzreels/issues"
13
+ },
14
+ "type": "module",
15
+ "main": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
5
17
  "bin": {
6
- "blitzreels-cli": "./bin/blitzreels-cli.js"
18
+ "blitzreels": "./dist/index.js"
19
+ },
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js"
24
+ }
7
25
  },
8
26
  "files": [
9
- "bin",
27
+ "dist",
10
28
  "README.md"
11
29
  ],
12
- "license": "UNLICENSED"
13
- }
30
+ "dependencies": {
31
+ "blitzreels": "^0.1.1"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "engines": {
37
+ "node": ">=20"
38
+ },
39
+ "scripts": {
40
+ "build": "tsc -p tsconfig.json && node scripts/make-bin-executable.mjs",
41
+ "typecheck": "tsc -p tsconfig.json --noEmit"
42
+ }
43
+ }
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log("BlitzReels CLI is coming soon.");