repomeld 2.0.3 → 2.0.5

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 +337 -226
  2. package/bin/cli.js +367 -370
  3. package/package.json +32 -6
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "repomeld",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "Meld your entire repo into a single file — perfect for AI context, code reviews & sharing",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
7
7
  "repomeld": "bin/cli.js"
8
8
  },
9
9
  "scripts": {
10
- "start": "node bin/cli.js"
10
+ "start": "node bin/cli.js",
11
+ "test": "node bin/cli.js --dry-run",
12
+ "prepublishOnly": "npm run test",
13
+ "postinstall": "node -e \"console.log('\\nšŸ“¦ repomeld installed successfully! Run: repomeld --help\\n')\""
11
14
  },
12
15
  "keywords": [
13
16
  "cli",
@@ -18,15 +21,38 @@
18
21
  "concat",
19
22
  "ai-context",
20
23
  "code-review",
21
- "repomeld"
24
+ "repomeld",
25
+ "git",
26
+ "repository"
22
27
  ],
23
- "author": "",
28
+ "author": "Susheel <susheelhbti@gmail.com>",
24
29
  "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/sakshsky/repomeld.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/sakshsky/repomeld/issues"
36
+ },
37
+ "homepage": "https://github.com/sakshsky/repomeld#readme",
25
38
  "dependencies": {
26
- "commander": "^11.0.0"
27
-
39
+ "commander": "^11.1.0",
40
+ "ignore": "^5.3.2",
41
+ "isbinaryfile": "^5.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "eslint": "^8.56.0",
45
+ "prettier": "^3.1.1"
28
46
  },
29
47
  "engines": {
30
48
  "node": ">=14.0.0"
49
+ },
50
+ "files": [
51
+ "bin/",
52
+ "README.md",
53
+ "LICENSE"
54
+ ],
55
+ "publishConfig": {
56
+ "access": "public"
31
57
  }
32
58
  }