gemmein 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 +8 -0
- package/cli.js +8 -0
- package/package.json +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# gemmein
|
|
2
|
+
|
|
3
|
+
The secure backend for AI-built apps — passwordless auth, safe storage, payment-safety. The unsafe paths don't exist.
|
|
4
|
+
|
|
5
|
+
The `gemmein` CLI (including `npx gemmein auth`) is coming soon.
|
|
6
|
+
|
|
7
|
+
- Product: https://gemmein.com
|
|
8
|
+
- Docs: https://docs.gemmein.com
|
package/cli.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
console.log("");
|
|
3
|
+
console.log(" ◆ gemmein — the secure backend for AI-built apps");
|
|
4
|
+
console.log("");
|
|
5
|
+
console.log(" The CLI is coming soon. Meanwhile:");
|
|
6
|
+
console.log(" → https://gemmein.com the product");
|
|
7
|
+
console.log(" → https://docs.gemmein.com the docs");
|
|
8
|
+
console.log("");
|
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gemmein",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Gemmein — the secure backend for AI-built apps. CLI coming soon.",
|
|
5
|
+
"bin": { "gemmein": "./cli.js" },
|
|
6
|
+
"files": ["cli.js", "README.md"],
|
|
7
|
+
"keywords": ["gemmein", "backend", "auth", "storage", "ai"],
|
|
8
|
+
"homepage": "https://gemmein.com",
|
|
9
|
+
"license": "MIT"
|
|
10
|
+
}
|