shashwat-trivedi 1.0.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/index.js +27 -0
  2. package/package.json +22 -0
package/index.js ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env node
2
+
3
+ import chalk from "chalk";
4
+ import boxen from "boxen";
5
+ import gradient from "gradient-string";
6
+
7
+ const message = `
8
+ Shashwat Trivedi
9
+ ━━━━━━━━━━━━━━━━━━
10
+
11
+ 🚀 IT Student at AIT Pune
12
+ 💻 Web Dev | Blockchain | Java
13
+ 🌐 Portfolio: yourwebsite.com
14
+ 🐙 GitHub: github.com/yourusername
15
+ 🔗 LinkedIn: linkedin.com/in/yourname
16
+ `;
17
+
18
+ const output = gradient.pastel.multiline(message);
19
+
20
+ console.log(
21
+ boxen(output, {
22
+ padding: 1,
23
+ margin: 1,
24
+ borderStyle: "round",
25
+ borderColor: "cyan",
26
+ })
27
+ );
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "shashwat-trivedi",
3
+ "version": "1.0.0",
4
+ "bin": {
5
+ "shashwat-trivedi": "./index.js"
6
+ },
7
+ "description": "",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [],
13
+ "author": "",
14
+ "license": "ISC",
15
+ "type": "module",
16
+ "dependencies": {
17
+ "boxen": "^8.0.1",
18
+ "chalk": "^5.6.2",
19
+ "figlet": "^1.11.0",
20
+ "gradient-string": "^3.0.0"
21
+ }
22
+ }