@human-gateway/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.
Files changed (3) hide show
  1. package/README.md +21 -0
  2. package/index.js +5 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # Human Gateway SDK
2
+
3
+ Official Human Gateway SDK placeholder.
4
+
5
+ This package reserves the official Human Gateway SDK namespace.
6
+
7
+ The production SDK is under active development and will be released in a future version.
8
+
9
+ ## Status
10
+
11
+ Placeholder release (`v0.0.1`)
12
+
13
+ ## Package
14
+
15
+ ```bash
16
+ npm install @human-gateway/sdk
17
+ ```
18
+
19
+ ## Purpose
20
+
21
+ This package currently exists to reserve the official namespace for future Human Gateway SDK releases.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export const version = "0.0.1";
2
+
3
+ export function humanGatewaySdkPlaceholder() {
4
+ return "Human Gateway SDK placeholder. Public SDK coming soon.";
5
+ }
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@human-gateway/sdk",
3
+ "version": "0.0.1",
4
+ "description": "Official Human Gateway SDK placeholder. Public SDK coming soon.",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "keywords": [
8
+ "human-gateway",
9
+ "world-id",
10
+ "verification",
11
+ "authentication",
12
+ "sdk"
13
+ ],
14
+ "author": "Human Gateway",
15
+ "license": "MIT"
16
+ }