@dependabit/plugin-http 0.1.17 → 0.1.19

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/CHANGELOG.md +14 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @dependabit/plugin-http
2
2
 
3
+ ## 0.1.19
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b6d3f6d`](https://github.com/pradeepmouli/dependabit/commit/b6d3f6d7eeea7d690458f9c95d88b54018d15139)]:
8
+ - @dependabit/manifest@0.1.19
9
+
10
+ ## 0.1.18
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`0f27a09`](https://github.com/pradeepmouli/dependabit/commit/0f27a09215683c508cb5575ea41e5a8b602b7ab9)]:
15
+ - @dependabit/manifest@0.1.18
16
+
3
17
  ## 0.1.17
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dependabit/plugin-http",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Generic HTTP content-hash checker plugin for dependabit — fingerprints arbitrary URL resources to detect upstream changes.",
5
5
  "homepage": "https://pradeepmouli.github.io/dependabit/",
6
6
  "bugs": {
@@ -23,14 +23,14 @@
23
23
  }
24
24
  },
25
25
  "dependencies": {
26
- "zod": "^4.4.3",
27
- "@dependabit/manifest": "0.1.17"
26
+ "zod": "^4.6.5",
27
+ "@dependabit/manifest": "0.1.19"
28
28
  },
29
29
  "devDependencies": {
30
- "@types/node": "^25.8.0",
31
- "tsx": "^4.22.2",
32
- "typescript": "^6.0.3",
33
- "vitest": "^4.1.6"
30
+ "@types/node": "^25.9.1",
31
+ "tsx": "^4.23.13",
32
+ "typescript": "^7.0.2",
33
+ "vitest": "^5.0.1"
34
34
  },
35
35
  "keywords": [
36
36
  "http",
@@ -52,10 +52,10 @@
52
52
  "LICENSE"
53
53
  ],
54
54
  "scripts": {
55
- "build": "tsgo -p tsconfig.json",
55
+ "build": "tsc -p tsconfig.json",
56
56
  "clean": "rm -rf dist",
57
57
  "dev": "tsx watch src/index.ts",
58
- "type-check": "tsgo --noEmit -p tsconfig.json",
58
+ "type-check": "tsc --noEmit -p tsconfig.json",
59
59
  "test": "vitest run",
60
60
  "test:watch": "vitest"
61
61
  }