tbssnch 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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Tierney Cyren
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ It's me, Tierney!
2
+
3
+ # Usage
4
+
5
+ ## npm
6
+ ```
7
+ npx bitandbang
8
+ ```
9
+
10
+ ## GitHub Package Registry
11
+ Assuming you have the GitHub registry set up, you can use via npx:
12
+ ```
13
+ npx @bnb/card
14
+ ```
15
+
16
+ Not including how to use it globally because I'm not sure why you'd want this as a global command. That'd be creepy.
package/bin/card.mjs ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ // 👆 Used to tell Node.js that this is a CLI tool
3
+
4
+ import { readFileSync } from 'node:fs';
5
+ import { join } from 'node:path';
6
+
7
+ const output = readFileSync(join(import.meta.dirname, 'output'), 'utf8');
8
+ console.log(output);
package/bin/output ADDED
@@ -0,0 +1,14 @@
1
+ 
2
+  ╭────────────────────────────────────────────────╮
3
+  │ │
4
+  │  Tyler Bussanich | @tbssnch │
5
+  │ │
6
+  │  Work: Frontend Developer │
7
+  │  GitHub: https://github.com/tbssnch │
8
+  │ LinkedIn: https://linkedin.com/in/tbssnch │
9
+  │  Web: https://tbssn.ch │
10
+  │ │
11
+  │  Card: npx tbssnch │
12
+  │ │
13
+  ╰────────────────────────────────────────────────╯
14
+ 
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "tbssnch",
3
+ "version": "1.0.0",
4
+ "description": "A personal card for Tyler Bussanich (@tbssnch)",
5
+ "main": "/bin/card.mjs",
6
+ "bin": {
7
+ "tbssnch": "./bin/card.mjs"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/tbssnch/tbssnch.git"
12
+ },
13
+ "homepage": "https://tbssn.ch",
14
+ "scripts": {
15
+ "prepublish": "npm run build",
16
+ "build": "node build.mjs",
17
+ "dev": "npm run build && node ./bin/card.mjs",
18
+ "format": "npx @biomejs/biome format --write",
19
+ "lint": "npx @biomejs/biome lint --write",
20
+ "check": "npx @biomejs/biome check --write"
21
+ },
22
+ "keywords": [
23
+ "card",
24
+ "npm",
25
+ "npm card",
26
+ "npx",
27
+ "npx card",
28
+ "business card"
29
+ ],
30
+ "author": "Tyler Bussanich (http://tbssn.ch)",
31
+ "license": "MIT",
32
+ "files": [
33
+ "bin/card.mjs",
34
+ "bin/output"
35
+ ],
36
+ "devDependencies": {
37
+ "@biomejs/biome": "1.8.2",
38
+ "boxen": "^7.1.1",
39
+ "chalk": "^5.3.0"
40
+ }
41
+ }