llms-generator-cli 1.0.1 → 1.0.2

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/README.md +1 -1
  2. package/package.json +20 -1
package/README.md CHANGED
@@ -44,7 +44,7 @@ npm install -g llms-generator-cli
44
44
  ### Option 3: Clone and use locally
45
45
 
46
46
  ```bash
47
- git clone https://github.com/your-username/llms-generator-cli.git
47
+ git clone https://github.com/Asadsheblu/llms-generator-node.git
48
48
  cd llms-generator-cli
49
49
  npm install
50
50
  npm link
package/package.json CHANGED
@@ -1,12 +1,31 @@
1
1
  {
2
2
  "name": "llms-generator-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Generate llms.txt and advanced LLM contexts from a URL",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
8
  "llms-gen": "./index.js"
9
9
  },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/Asadsheblu/llms-generator-node.git"
13
+ },
14
+ "keywords": [
15
+ "llms",
16
+ "llms.txt",
17
+ "markdown",
18
+ "scraper",
19
+ "ai",
20
+ "context-generator",
21
+ "cli"
22
+ ],
23
+ "author": "Md. Asaduzzaman",
24
+ "license": "MIT",
25
+ "bugs": {
26
+ "url": "https://github.com/Asadsheblu/llms-generator-node/issues"
27
+ },
28
+ "homepage": "https://github.com/Asadsheblu/llms-generator-node#readme",
10
29
  "dependencies": {
11
30
  "axios": "^1.6.0",
12
31
  "cheerio": "^1.0.0-rc.12",