@gemmein/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 +8 -0
  2. package/index.js +6 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # @gemmein/sdk
2
+
3
+ The official Gemmein SDK — passwordless auth and safe storage for AI-built apps, small enough to be taught by one prompt.
4
+
5
+ Launching soon. This version reserves the package name.
6
+
7
+ - Product: https://gemmein.com
8
+ - Docs: https://docs.gemmein.com
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ module.exports = function gemmein() {
3
+ throw new Error(
4
+ "@gemmein/sdk is launching soon — this version reserves the name. Watch https://gemmein.com"
5
+ );
6
+ };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@gemmein/sdk",
3
+ "version": "0.0.1",
4
+ "description": "Gemmein SDK — auth + storage for AI-built apps. Launching soon.",
5
+ "main": "index.js",
6
+ "files": ["index.js", "README.md"],
7
+ "keywords": ["gemmein", "auth", "storage", "backend", "ai"],
8
+ "homepage": "https://gemmein.com",
9
+ "license": "MIT"
10
+ }