get-llms 1.0.2 → 1.0.4

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 CHANGED
@@ -3,8 +3,16 @@
3
3
 
4
4
  ## Install
5
5
 
6
+ install it globally
7
+
6
8
  ```bash
7
9
  npm install -g get-llms
10
+ ``` p
11
+
12
+ or just run it with npx
13
+
14
+ ```bash
15
+ npx get-llms
8
16
  ```
9
17
 
10
18
  ## Usage
@@ -22,7 +30,7 @@ get-llms
22
30
  You can fetch specific packages without needing a `package.json`:
23
31
 
24
32
  ```bash
25
- get-llms zod lodash react
33
+ get-llms zod react-native
26
34
  ```
27
35
 
28
36
  ## CLI Options
@@ -226,7 +234,7 @@ By default, files are saved to:
226
234
  ```
227
235
  docs/llms/
228
236
  ├── zod.txt
229
- ├── lodash.txt
237
+ ├── react-native.txt
230
238
  └── [package-name].txt
231
239
  ```
232
240
 
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "get-llms",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "CLI tool for fetching llms.txt files for all of your dependencies",
5
- "homepage": "https://github.com/balazshevesi/llms-fetcher#readme",
5
+ "homepage": "https://github.com/balazshevesi/get-llms#readme",
6
6
  "bin": {
7
7
  "get-llms": "dist/bin/index.js"
8
8
  },
9
9
  "bugs": {
10
- "url": "https://github.com/balazshevesi/llms-fetcher/issues"
10
+ "url": "https://github.com/balazshevesi/get-llms/issues"
11
11
  },
12
12
  "llms": "https://raw.githubusercontent.com/balazshevesi/get-llms/main/README.md",
13
13
  "llmsFull": "https://raw.githubusercontent.com/balazshevesi/get-llms/main/README.md",
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "git+https://github.com/balazshevesi/llms-fetcher.git"
16
+ "url": "git+https://github.com/balazshevesi/get-llms.git"
17
17
  },
18
18
  "license": "MIT",
19
19
  "author": "Balazs Hevesi",
@@ -29,13 +29,14 @@
29
29
  "@vitest/coverage-v8": "^4.0.16",
30
30
  "msw": "^2.12.7",
31
31
  "tsc-alias": "^1.8.16",
32
+ "tsx": "^4.21.0",
32
33
  "vitest": "^4.0.16"
33
34
  },
34
35
  "dependencies": {
35
36
  "commander": "^14.0.2"
36
37
  },
37
38
  "engines": {
38
- "node": ">=18.0.0"
39
+ "node": ">=20.0.0"
39
40
  },
40
41
  "keywords": [
41
42
  "get-llms",
package/vitest.config.ts DELETED
@@ -1,17 +0,0 @@
1
- import { defineConfig } from "vitest/config";
2
-
3
- export default defineConfig({
4
- test: {
5
- globals: true,
6
- environment: "node",
7
- include: ["tests/**/*.test.ts"],
8
- setupFiles: ["./tests/setup.ts"],
9
- coverage: {
10
- provider: "v8",
11
- reporter: ["text", "html"],
12
- include: ["bin/**/*.ts"],
13
- exclude: ["bin/index.ts"],
14
- },
15
- testTimeout: 10000,
16
- },
17
- });