@codigoconelmer/driftwatch 1.0.0 → 1.0.2

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 +4 -4
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  External API schema drift detector with Telegram alerts. No SDK to install in your apps — runs as a standalone daemon or Docker container, pointing at any HTTP endpoint you want to monitor.
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/driftwatch)](https://www.npmjs.com/package/driftwatch)
5
+ [![npm version](https://img.shields.io/npm/v/@codigoconelmer/driftwatch)](https://www.npmjs.com/package/@codigoconelmer/driftwatch)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
7
- [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-donate-orange)](https://buymeacoffee.com/)
7
+ [![PayPal](https://img.shields.io/badge/Donate-PayPal-blue)](https://www.paypal.me/elmerjacobo97)
8
8
 
9
9
  ---
10
10
 
@@ -28,9 +28,9 @@ DriftWatch periodically hits your API endpoints and extracts their response **sc
28
28
  ## Install
29
29
 
30
30
  ```bash
31
- npm install -g driftwatch
31
+ npm install -g @codigoconelmer/driftwatch
32
32
  # or
33
- pnpm add -g driftwatch
33
+ pnpm add -g @codigoconelmer/driftwatch
34
34
  ```
35
35
 
36
36
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codigoconelmer/driftwatch",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "External API schema drift detector with Telegram alerts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -27,6 +27,12 @@
27
27
  "cli"
28
28
  ],
29
29
  "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/elmerjacobo97/driftwatch"
33
+ },
34
+ "homepage": "https://github.com/elmerjacobo97/driftwatch#readme",
35
+ "bugs": "https://github.com/elmerjacobo97/driftwatch/issues",
30
36
  "dependencies": {
31
37
  "axios": "^1.7.9",
32
38
  "commander": "^12.1.0",
@@ -47,6 +53,8 @@
47
53
  "node": ">=18"
48
54
  },
49
55
  "pnpm": {
50
- "onlyBuiltDependencies": ["esbuild"]
56
+ "onlyBuiltDependencies": [
57
+ "esbuild"
58
+ ]
51
59
  }
52
60
  }