mygenie 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/bin/mygenie.js +1 -0
- package/package.json +11 -0
package/bin/mygenie.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node\nconsole.log("My Genie v0.0.1 — coming soon. Visit https://mygenie.tech");
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mygenie",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Your AI business employee. One command, five minutes, working AI.",
|
|
5
|
+
"bin": { "mygenie": "./bin/mygenie.js" },
|
|
6
|
+
"keywords": ["ai", "business", "automation", "cli", "genie"],
|
|
7
|
+
"author": "Bobby McClure <bobby@apexai.technology>",
|
|
8
|
+
"license": "UNLICENSED",
|
|
9
|
+
"homepage": "https://mygenie.tech",
|
|
10
|
+
"repository": { "type": "git", "url": "https://github.com/Bobby44-max/apex-ai-systems" }
|
|
11
|
+
}
|