@codigoconelmer/driftwatch 1.0.0 → 1.0.1
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/README.md +1 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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
|
-
[](https://www.npmjs.com/package/driftwatch)
|
|
5
|
+
[](https://www.npmjs.com/package/@codigoconelmer/driftwatch)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://buymeacoffee.com/)
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codigoconelmer/driftwatch",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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": [
|
|
56
|
+
"onlyBuiltDependencies": [
|
|
57
|
+
"esbuild"
|
|
58
|
+
]
|
|
51
59
|
}
|
|
52
60
|
}
|