doc-fetch-cli 2.0.9 → 2.1.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.
Files changed (3) hide show
  1. package/doc-fetch +0 -0
  2. package/go.mod +5 -2
  3. package/package.json +1 -1
package/doc-fetch CHANGED
Binary file
package/go.mod CHANGED
@@ -1,6 +1,6 @@
1
1
  module github.com/AlphaTechini/doc-fetch
2
2
 
3
- go 1.21
3
+ go 1.24.0
4
4
 
5
5
  require (
6
6
  github.com/PuerkitoBio/goquery v1.8.1
@@ -8,4 +8,7 @@ require (
8
8
  golang.org/x/net v0.17.0
9
9
  )
10
10
 
11
- require github.com/andybalholm/cascadia v1.3.1 // indirect
11
+ require (
12
+ github.com/andybalholm/cascadia v1.3.1 // indirect
13
+ golang.org/x/time v0.14.0 // indirect
14
+ )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doc-fetch-cli",
3
- "version": "2.0.9",
3
+ "version": "2.1.0",
4
4
  "description": "Dynamic documentation fetching CLI that converts entire documentation sites to single markdown files for AI/LLM consumption",
5
5
  "bin": {
6
6
  "doc-fetch": "./bin/doc-fetch.js"