@blitzreels/cli 0.0.0 → 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/README.md CHANGED
@@ -1,3 +1,22 @@
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
+ Use this package when you prefer a scoped npm install name. The primary command
6
+ surface is the same as `blitzreels`.
7
+
8
+ ## Usage
9
+
10
+ After the first real publish:
11
+
12
+ ```bash
13
+ npx @blitzreels/cli auth login
14
+ npx @blitzreels/cli auth whoami
15
+ npx @blitzreels/cli api docs
16
+ ```
17
+
18
+ For most users, the recommended package is still:
19
+
20
+ ```bash
21
+ npx blitzreels auth login
22
+ ```
@@ -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,34 @@
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.0",
4
+ "description": "Scoped package wrapper for the BlitzReels CLI.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
5
8
  "bin": {
6
- "blitzreels-cli": "./bin/blitzreels-cli.js"
9
+ "blitzreels": "./dist/index.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js"
15
+ }
7
16
  },
8
17
  "files": [
9
- "bin",
18
+ "dist",
10
19
  "README.md"
11
20
  ],
12
- "license": "UNLICENSED"
13
- }
21
+ "dependencies": {
22
+ "blitzreels": "^0.1.0"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "engines": {
28
+ "node": ">=20"
29
+ },
30
+ "scripts": {
31
+ "build": "tsc -p tsconfig.json && node scripts/make-bin-executable.mjs",
32
+ "typecheck": "tsc -p tsconfig.json --noEmit"
33
+ }
34
+ }
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log("BlitzReels CLI is coming soon.");