@blitzreels/sdk 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/sdk
2
+
3
+ Placeholder package reserved for the public BlitzReels TypeScript SDK.
@@ -0,0 +1,3 @@
1
+ export declare class BlitzReelsClient {
2
+ constructor();
3
+ }
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export class BlitzReelsClient {
2
+ constructor() {
3
+ throw new Error("@blitzreels/sdk is coming soon.");
4
+ }
5
+ }
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@blitzreels/sdk",
3
+ "version": "0.0.0",
4
+ "description": "TypeScript SDK for the BlitzReels API.",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "license": "UNLICENSED"
18
+ }