bobp 0.0.7 → 0.0.10

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/README.md +54 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1 +1,55 @@
1
+ <img src="https://repository-images.githubusercontent.com/914766829/40b4fd3b-cedd-417c-9068-3cfc1bb18108" alt="Cover" />
2
+
3
+ <p align="center">
4
+ <a href="https://npmjs.com/package/bobp/" target="_blank" alt="NPM" >
5
+ <img src="https://img.shields.io/npm/v/bobp.svg" alt="NPM Badge" />
6
+ </a>
7
+
8
+ <a href="https://github.com/rdarida/bobp" target="_blank" alt="GitHub Repository">
9
+ <img src="https://img.shields.io/badge/-repository-222222?style=flat&logo=github" alt="GitHub Repository Badge" />
10
+ </a>
11
+
12
+ <a href="https://github.com/rdarida/bobp/actions/workflows/publish.yml" target="_blank" alt="GitHub Actions">
13
+ <img src="https://github.com/rdarida/bobp/actions/workflows/publish.yml/badge.svg" alt="Publish Badge" />
14
+ </a>
15
+
16
+ <a href="https://sonarcloud.io/dashboard?id=rdarida_bobp" target="_blank" alt="SonarCloud">
17
+ <img src="https://sonarcloud.io/api/project_badges/measure?project=rdarida_bobp&metric=coverage" alt="Coverage Badge" />
18
+ </a>
19
+
20
+ <img src="https://img.shields.io/librariesio/release/npm/bobp" alt="Dependencies Badge" />
21
+ </p>
22
+ <hr>
23
+
1
24
  # bobp
25
+ How can I help you, Bobp?
26
+
27
+ ### Greetings, wayward traveler!
28
+ This most excellent piece of software awaits you, whether fate led you here or
29
+ you simply botched a search. **Either way, welcome!**
30
+
31
+ I originally created this tool for my own use, tailoring it to my needs. But if
32
+ you find it useful too, I’m glad it can help!
33
+
34
+ ## Installation
35
+ ```sh
36
+ npm i -g bobp
37
+ ```
38
+
39
+ <hr>
40
+
41
+ <details>
42
+ <summary>
43
+ <strong>Resources</strong>
44
+ </summary>
45
+
46
+ - [Documentation](https://rdarida.github.io/bobp/)
47
+ - [Rowan Atkinson demonstrating how funny "Bob" can be](https://www.youtube.com/watch?v=wOdfNwD9cEA)
48
+ </details>
49
+ <hr>
50
+
51
+ <p align="center">
52
+ <a href="LICENSE" target="_blank" alt="License">
53
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License Badge" />
54
+ </a>
55
+ </p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bobp",
3
- "version": "0.0.7",
4
- "description": "",
3
+ "version": "0.0.10",
4
+ "description": "How can I help you, Bobp?",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "author": "Róbert Darida",
@@ -31,14 +31,14 @@
31
31
  "release": "standard-version",
32
32
  "postrelease": "git push --follow-tags origin HEAD",
33
33
  "predocs": "rimraf ./docs",
34
- "docs": "typedoc --out ./docs --exclude \"./src/cli.ts\" ./src"
34
+ "docs": "typedoc"
35
35
  },
36
36
  "dependencies": {
37
37
  "yargs": "^17.7.2"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/jest": "^29.5.14",
41
- "@types/node": "^22.10.5",
41
+ "@types/node": "^22.13.14",
42
42
  "@types/yargs": "^17.0.33",
43
43
  "jest": "^29.7.0",
44
44
  "jest-config": "^29.7.0",
@@ -47,7 +47,7 @@
47
47
  "standard-version": "^9.5.0",
48
48
  "ts-jest": "^29.2.5",
49
49
  "tsup": "^8.3.5",
50
- "typedoc": "^0.27.6",
51
- "typescript": "^5.7.3"
50
+ "typedoc": "^0.28.1",
51
+ "typescript": "^5.8.2"
52
52
  }
53
53
  }