@blitzreels/cli 0.1.4 → 0.1.6
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/LICENSE +25 -0
- package/README.md +6 -2
- package/package.json +5 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
BlitzReels Developer Package License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 BlitzReels. All rights reserved.
|
|
4
|
+
|
|
5
|
+
1. Grant
|
|
6
|
+
|
|
7
|
+
Permission is granted to install and use this package to build software that accesses the BlitzReels service.
|
|
8
|
+
You may redistribute the package only in its unmodified published form as a dependency of such software,
|
|
9
|
+
including commercial software.
|
|
10
|
+
|
|
11
|
+
2. Restrictions
|
|
12
|
+
|
|
13
|
+
Except where applicable law permits, you may not modify, adapt, translate, reverse engineer, decompile,
|
|
14
|
+
disassemble, create derivative works from, sublicense, sell, or redistribute this package except as allowed
|
|
15
|
+
above. You may not remove this notice.
|
|
16
|
+
|
|
17
|
+
3. Service and trademarks
|
|
18
|
+
|
|
19
|
+
Use of the BlitzReels service is governed by https://www.blitzreels.com/terms. This license grants no
|
|
20
|
+
ownership rights in the BlitzReels service, API, data, names, logos, or brand assets.
|
|
21
|
+
|
|
22
|
+
4. Warranty and liability
|
|
23
|
+
|
|
24
|
+
THE PACKAGE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY LAW,
|
|
25
|
+
BLITZREELS IS NOT LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM THE PACKAGE OR ITS USE.
|
package/README.md
CHANGED
|
@@ -11,8 +11,6 @@ surface is the same as `blitzreels`.
|
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
13
13
|
|
|
14
|
-
After the first real publish:
|
|
15
|
-
|
|
16
14
|
```bash
|
|
17
15
|
npx @blitzreels/cli version
|
|
18
16
|
npx @blitzreels/cli doctor
|
|
@@ -27,3 +25,9 @@ For most users, the recommended package is still:
|
|
|
27
25
|
```bash
|
|
28
26
|
npx blitzreels auth login
|
|
29
27
|
```
|
|
28
|
+
|
|
29
|
+
Browser auth shows a one-time CLI code in BlitzReels and waits for the logged-in
|
|
30
|
+
user to click `Connect CLI` before any API key is created.
|
|
31
|
+
|
|
32
|
+
The npm package is publicly installable, but its canonical source is private and proprietary.
|
|
33
|
+
It follows the same command surface and license as `blitzreels`; see `LICENSE` for package terms.
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blitzreels/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Scoped CLI package for AI agents to edit videos inside BlitzReels.",
|
|
5
5
|
"homepage": "https://blitzreels.com/",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "git+https://github.com/blitzreels/blitzreels.git",
|
|
@@ -25,10 +26,11 @@
|
|
|
25
26
|
},
|
|
26
27
|
"files": [
|
|
27
28
|
"dist",
|
|
28
|
-
"README.md"
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE"
|
|
29
31
|
],
|
|
30
32
|
"dependencies": {
|
|
31
|
-
"blitzreels": "^0.1.
|
|
33
|
+
"blitzreels": "^0.1.8"
|
|
32
34
|
},
|
|
33
35
|
"publishConfig": {
|
|
34
36
|
"access": "public"
|