get-llms 1.0.2 → 1.0.3

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
@@ -22,7 +22,7 @@ get-llms
22
22
  You can fetch specific packages without needing a `package.json`:
23
23
 
24
24
  ```bash
25
- get-llms zod lodash react
25
+ get-llms zod react-native
26
26
  ```
27
27
 
28
28
  ## CLI Options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-llms",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool for fetching llms.txt files for all of your dependencies",
5
5
  "homepage": "https://github.com/balazshevesi/llms-fetcher#readme",
6
6
  "bin": {
@@ -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
- });