llmstxt-cli 0.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/README.md +77 -0
  2. package/dist/index.js +8170 -0
  3. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "llmstxt-cli",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Install llms.txt files from the llms-txt-hub registry into your project",
6
+ "keywords": [
7
+ "llms",
8
+ "llms.txt",
9
+ "ai",
10
+ "documentation",
11
+ "cli"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/thedaviddias/llms-txt-hub",
16
+ "directory": "packages/cli"
17
+ },
18
+ "license": "MIT",
19
+ "type": "module",
20
+ "bin": {
21
+ "llmstxt": "./dist/index.js"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "build": "pnpm build:registry && tsup",
28
+ "build:registry": "tsx scripts/build-registry.ts",
29
+ "dev": "tsup --watch",
30
+ "test": "vitest run --passWithNoTests",
31
+ "test:watch": "vitest",
32
+ "typecheck": "tsc --noEmit"
33
+ },
34
+ "dependencies": {
35
+ "@clack/prompts": "^1.0.1",
36
+ "commander": "^13.1.0",
37
+ "fuse.js": "^7.1.0",
38
+ "picocolors": "^1.1.1"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^22.19.11",
42
+ "gray-matter": "^4.0.3",
43
+ "tsup": "^8.5.1",
44
+ "tsx": "^4.21.0",
45
+ "typescript": "^5.9.3",
46
+ "vitest": "^4.0.18"
47
+ },
48
+ "engines": {
49
+ "node": ">=24"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public"
53
+ }
54
+ }