thelapyae 0.1.0

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 (2) hide show
  1. package/bin/thelapyae.js +13 -0
  2. package/package.json +10 -0
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ 👋 Hi, I'm La Pyae (@thelapyae)
5
+
6
+ 🧠 Mental Models
7
+ 🗿 Stoicism
8
+ ⚙️ Clear thinking for creators & builders
9
+
10
+ Try:
11
+ npx thelapyae random
12
+ npx thelapyae stoic
13
+ `);
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "thelapyae",
3
+ "version": "0.1.0",
4
+ "description": "Personal CLI of La Pyae – mental models, stoicism, clear thinking",
5
+ "bin": {
6
+ "thelapyae": "./bin/thelapyae.js"
7
+ },
8
+ "author": "La Pyae",
9
+ "license": "MIT"
10
+ }