@pdpull/sdk 0.0.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 ADDED
@@ -0,0 +1,5 @@
1
+ # @pdpull/sdk
2
+
3
+ ⚠️ This package is currently a placeholder to reserve the name on npm.
4
+
5
+ The official SDK is under development and will be released soon.
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/index.js ADDED
@@ -0,0 +1 @@
1
+ throw new Error("@pdpull/sdk is not yet implemented. Coming soon.");
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@pdpull/sdk",
3
+ "version": "0.0.1",
4
+ "description": "Official PD SDK (placeholder)",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "files": [
8
+ "index.js",
9
+ "index.d.ts"
10
+ ],
11
+ "author": "DokLibs Ltd",
12
+ "license": "MIT",
13
+ "publishConfig": {
14
+ "access": "public"
15
+ }
16
+ }