moheshwar 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.
- package/bun.lock +25 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +15 -0
- package/package.json +19 -0
- package/tsconfig.json +40 -0
package/bun.lock
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 1,
|
|
3
|
+
"configVersion": 1,
|
|
4
|
+
"workspaces": {
|
|
5
|
+
"": {
|
|
6
|
+
"name": "moheshwar",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"chalk": "^5.6.2",
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@types/node": "^25.5.2",
|
|
12
|
+
"typescript": "^6.0.2",
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
"packages": {
|
|
17
|
+
"@types/node": ["@types/node@25.5.2", "", { "dependencies": { "undici-types": "~7.18.0" } }, "sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg=="],
|
|
18
|
+
|
|
19
|
+
"chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
|
|
20
|
+
|
|
21
|
+
"typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="],
|
|
22
|
+
|
|
23
|
+
"undici-types": ["undici-types@7.18.2", "", {}, "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w=="],
|
|
24
|
+
}
|
|
25
|
+
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import chalk from "chalk";
|
|
2
|
+
const username = "fluentmoheshwar";
|
|
3
|
+
const email = "sayhi@moheshwar.com";
|
|
4
|
+
console.log("Hi, I'm Moheshwar Amarnath Biswas.");
|
|
5
|
+
console.log(`\nSoftware Developer proficient in building quality websites and apps with various technologies such as Node.js, Astro, Python and others.
|
|
6
|
+
`);
|
|
7
|
+
console.log(`Links: `);
|
|
8
|
+
console.log(`Find me on web: ${chalk.blueBright("https://moheshwar.com")}`);
|
|
9
|
+
console.log(`You can find me on Facebook: ${chalk.blueBright(`https://facebook.com/${username}`)}`);
|
|
10
|
+
console.log(`You can find me on X: ${chalk.blueBright(`https://x.com/${username}`)}`);
|
|
11
|
+
console.log(`You can find me on Threads: ${chalk.blueBright(`https://threads.com/${username}`)}`);
|
|
12
|
+
console.log(`You can find me on Instagram: ${chalk.blueBright(`https://instagram.com/${username}`)}`);
|
|
13
|
+
console.log(`You can find me on Bluesky: ${chalk.blueBright("https://bsky.app/profile/moheshwar.com")}`);
|
|
14
|
+
console.log(`You can also reach me at: ${email}`);
|
|
15
|
+
console.log(`\nThank you for visiting my profile!`);
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "moheshwar",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Description of Moheshwar Amarnath Biswas",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Moheshwar Amarnath Biswas",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"typescript": "^6.0.2",
|
|
14
|
+
"@types/node": "^25.5.2"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"chalk": "^5.6.2"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Visit https://aka.ms/tsconfig to read more about this file
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
// File Layout
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"outDir": "./dist",
|
|
7
|
+
|
|
8
|
+
// Environment Settings
|
|
9
|
+
// See also https://aka.ms/tsconfig/module
|
|
10
|
+
"module": "NodeNext",
|
|
11
|
+
"target": "esnext",
|
|
12
|
+
"lib": ["esnext"],
|
|
13
|
+
"types": ["node"],
|
|
14
|
+
|
|
15
|
+
// Other Outputs
|
|
16
|
+
"declaration": true,
|
|
17
|
+
|
|
18
|
+
// Stricter Typechecking Options
|
|
19
|
+
"noUncheckedIndexedAccess": true,
|
|
20
|
+
"exactOptionalPropertyTypes": true,
|
|
21
|
+
|
|
22
|
+
// Style Options
|
|
23
|
+
"forceConsistentCasingInFileNames": true,
|
|
24
|
+
"noImplicitReturns": true,
|
|
25
|
+
"noImplicitOverride": true,
|
|
26
|
+
"noUnusedLocals": true,
|
|
27
|
+
"noUnusedParameters": true,
|
|
28
|
+
"noFallthroughCasesInSwitch": true,
|
|
29
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
30
|
+
|
|
31
|
+
// Recommended Options
|
|
32
|
+
"strict": true,
|
|
33
|
+
"jsx": "react-jsx",
|
|
34
|
+
"verbatimModuleSyntax": true,
|
|
35
|
+
"isolatedModules": true,
|
|
36
|
+
"noUncheckedSideEffectImports": true,
|
|
37
|
+
"moduleDetection": "force",
|
|
38
|
+
"skipLibCheck": true,
|
|
39
|
+
}
|
|
40
|
+
}
|