adityashinde 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 (2) hide show
  1. package/index.js +24 -0
  2. package/package.json +10 -0
package/index.js ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.clear()
4
+
5
+ console.log(`
6
+ ────────────────────────────────
7
+ Aditya Shinde
8
+ Web Designer & Front-End Developer
9
+ ────────────────────────────────
10
+
11
+ Portfolio : https://www.adityashinde.in
12
+ Studio : https://www.trykala.com
13
+ GitHub : https://github.com/adityashinde-in
14
+ LinkedIn : https://linkedin.com/in/adityashinde-in
15
+ Instagram : https://instagram.com/adityashinde_in
16
+
17
+ Location : India
18
+ Focus : Web, UI/UX, Motion, Systems
19
+
20
+ Run with:
21
+ npx adityashinde
22
+
23
+ ────────────────────────────────
24
+ `)
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "adityashinde",
3
+ "version": "0.0.1",
4
+ "description": "Aditya Shinde — interactive terminal portfolio",
5
+ "bin": {
6
+ "adityashinde": "index.js"
7
+ },
8
+ "author": "Aditya Shinde",
9
+ "license": "MIT"
10
+ }