repomeld 1.0.0 → 2.0.1
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 +141 -32
- package/bin/cli.js +33 -2
- package/bin/repomeld.ignore.json +612 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
> Meld your entire repo into a single file — perfect for AI context, code reviews & sharing.
|
|
4
4
|
|
|
5
|
+
---
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
10
|
npm install -g repomeld
|
|
9
11
|
```
|
|
10
12
|
|
|
13
|
+
---
|
|
14
|
+
|
|
11
15
|
## Quick Start
|
|
12
16
|
|
|
13
17
|
```bash
|
|
@@ -15,7 +19,88 @@ cd your-project
|
|
|
15
19
|
repomeld
|
|
16
20
|
```
|
|
17
21
|
|
|
18
|
-
Creates `repomeld_output.txt` with all your files combined, a table of contents, and file metadata.
|
|
22
|
+
Creates `repomeld_output.txt` with all your source files combined, a table of contents, and file metadata — with all public libraries, vendor folders, and boilerplate automatically excluded.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Smart Auto-Ignore
|
|
27
|
+
|
|
28
|
+
repomeld ships with a built-in `repomeld.ignore.json` that **automatically skips** common public libraries and vendor files so your output stays small and focused on your own code.
|
|
29
|
+
|
|
30
|
+
### What gets ignored by default
|
|
31
|
+
|
|
32
|
+
| Category | Examples |
|
|
33
|
+
|---|---|
|
|
34
|
+
| Project meta | `package.json`, `README.md`, `yarn.lock`, `.gitignore` |
|
|
35
|
+
| Build output | `dist/`, `build/`, `.next/`, `.nuxt/`, `coverage/` |
|
|
36
|
+
| Vendor folders | `vendor/`, `libs/`, `plugins/`, `assets/vendor/`, `wwwroot/lib/` |
|
|
37
|
+
| Bootstrap | `bootstrap.min.css`, `bootstrap.bundle.min.js`, `bootstrap-icons` |
|
|
38
|
+
| jQuery | `jquery.min.js`, `jquery-ui.min.js`, `jquery.validate.min.js` |
|
|
39
|
+
| Font Awesome | `all.min.css`, `fa-solid-900.woff2`, `fontawesome-free/` |
|
|
40
|
+
| Tailwind CSS | `tailwind.min.css`, `tailwindcss/` |
|
|
41
|
+
| Materialize | `materialize.min.css`, `materialize.min.js` |
|
|
42
|
+
| Bulma | `bulma.min.css` |
|
|
43
|
+
| Semantic UI | `semantic.min.css`, `semantic.min.js` |
|
|
44
|
+
| Foundation | `foundation.min.css`, `foundation.min.js` |
|
|
45
|
+
| UIkit | `uikit.min.css`, `uikit.min.js` |
|
|
46
|
+
| Animate.css | `animate.min.css`, `animate.css` |
|
|
47
|
+
| GSAP | `gsap.min.js`, `ScrollTrigger.min.js`, `TweenMax.min.js` |
|
|
48
|
+
| Swiper / Slick / Owl | `swiper-bundle.min.js`, `slick.min.js`, `owl.carousel.min.js` |
|
|
49
|
+
| Chart.js / D3 / Three.js | `chart.min.js`, `d3.min.js`, `three.min.js` |
|
|
50
|
+
| Axios / Lodash / Moment | `axios.min.js`, `lodash.min.js`, `moment.min.js` |
|
|
51
|
+
| Select2 / Flatpickr | `select2.min.js`, `flatpickr.min.js` |
|
|
52
|
+
| DataTables | `datatables.min.js`, `jquery.dataTables.min.js` |
|
|
53
|
+
| Toastr / SweetAlert | `toastr.min.js`, `sweetalert2.min.js` |
|
|
54
|
+
| Lightbox / Fancybox | `lightbox.min.js`, `glightbox.min.js` |
|
|
55
|
+
| Rich text editors | `quill.min.js`, `tinymce/`, `ckeditor/`, `codemirror/` |
|
|
56
|
+
| Syntax highlighting | `prism.min.js`, `highlight.min.js` |
|
|
57
|
+
| Video / Audio players | `video.js`, `plyr.min.js` |
|
|
58
|
+
| Maps | `leaflet.min.js`, `mapbox-gl.min.js` |
|
|
59
|
+
| Icon sets | `remixicon.css`, `boxicons.css`, `ionicons.css`, `lucide.min.js` |
|
|
60
|
+
| Socket.IO | `socket.io.min.js` |
|
|
61
|
+
| Misc utilities | `lazysizes.js`, `lottie.min.js`, `particles.js`, `typed.js`, `sortable.min.js`, `masonry.js` |
|
|
62
|
+
| Admin templates | `AdminLTE/`, `metronic/`, `coreui/`, `gentelella/` |
|
|
63
|
+
| Env / Secrets | `.env`, `.env.local`, `.env.production` |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Force-Include an Ignored Library
|
|
68
|
+
|
|
69
|
+
If you need a normally-ignored file to appear in your output, use `--force-include`:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
# Include your customized bootstrap.js even though bootstrap is ignored by default
|
|
73
|
+
repomeld --force-include bootstrap
|
|
74
|
+
|
|
75
|
+
# Include multiple overrides
|
|
76
|
+
repomeld --force-include jquery vendor bootstrap
|
|
77
|
+
|
|
78
|
+
# Combine with other options
|
|
79
|
+
repomeld --force-include jquery --style markdown --output context.md
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
`--force-include` matches by name substring, so `--force-include bootstrap` will un-ignore both `bootstrap.min.css` and `bootstrap.min.js`.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Customize the Ignore List
|
|
87
|
+
|
|
88
|
+
You can override or extend the ignore list by placing your own `repomeld.ignore.json` in your **project root**. It will take priority over the built-in config.
|
|
89
|
+
|
|
90
|
+
```json
|
|
91
|
+
{
|
|
92
|
+
"ignore": [
|
|
93
|
+
"my-custom-vendor-folder",
|
|
94
|
+
"some-legacy-lib.js",
|
|
95
|
+
"generated-report.html"
|
|
96
|
+
]
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
repomeld looks for config in this order:
|
|
101
|
+
1. `repomeld.ignore.json` in your **project root** (user override)
|
|
102
|
+
2. `repomeld.ignore.json` bundled with the npm package (built-in defaults)
|
|
103
|
+
3. Hardcoded `DEFAULT_IGNORE` list in the CLI
|
|
19
104
|
|
|
20
105
|
---
|
|
21
106
|
|
|
@@ -25,29 +110,36 @@ Creates `repomeld_output.txt` with all your files combined, a table of contents,
|
|
|
25
110
|
Usage: repomeld [options]
|
|
26
111
|
|
|
27
112
|
Options:
|
|
28
|
-
-V, --version
|
|
29
|
-
-h, --help
|
|
113
|
+
-V, --version Show version
|
|
114
|
+
-h, --help Show help
|
|
30
115
|
|
|
31
116
|
Output:
|
|
32
|
-
-o, --output <filename>
|
|
117
|
+
-o, --output <filename> Output file name (default: "repomeld_output.txt")
|
|
33
118
|
|
|
34
119
|
Filtering:
|
|
35
|
-
-e, --ext <exts...>
|
|
36
|
-
|
|
37
|
-
--
|
|
38
|
-
|
|
39
|
-
--
|
|
120
|
+
-e, --ext <exts...> Only include specific extensions
|
|
121
|
+
e.g. --ext js ts jsx tsx
|
|
122
|
+
--include <patterns...> Only include files matching patterns
|
|
123
|
+
e.g. --include src/
|
|
124
|
+
--exclude <patterns...> Exclude files matching patterns
|
|
125
|
+
e.g. --exclude test spec
|
|
126
|
+
-i, --ignore <names...> Extra folders/files to ignore
|
|
127
|
+
e.g. --ignore dist .next
|
|
128
|
+
--force-include <names...> Force-include files ignored by default
|
|
129
|
+
e.g. --force-include vendor bootstrap jquery
|
|
130
|
+
--max-size <kb> Skip files larger than N KB (default: 500)
|
|
40
131
|
|
|
41
132
|
Formatting:
|
|
42
|
-
-s, --style <style>
|
|
43
|
-
|
|
44
|
-
--no-
|
|
45
|
-
--
|
|
133
|
+
-s, --style <style> Header style: banner | markdown | minimal
|
|
134
|
+
(default: banner)
|
|
135
|
+
--no-toc Disable table of contents
|
|
136
|
+
--no-meta Hide file metadata (lines, size, lang)
|
|
137
|
+
--trim Trim leading/trailing whitespace per file
|
|
46
138
|
|
|
47
139
|
Advanced:
|
|
48
|
-
--lines-before <n>
|
|
49
|
-
--lines-after <n>
|
|
50
|
-
--dry-run
|
|
140
|
+
--lines-before <n> Skip first N lines of each file
|
|
141
|
+
--lines-after <n> Skip last N lines of each file
|
|
142
|
+
--dry-run Preview what would be included — don't write output
|
|
51
143
|
```
|
|
52
144
|
|
|
53
145
|
---
|
|
@@ -55,23 +147,26 @@ Options:
|
|
|
55
147
|
## Examples
|
|
56
148
|
|
|
57
149
|
```bash
|
|
58
|
-
# Basic usage
|
|
150
|
+
# Basic usage — outputs source files only, libraries auto-ignored
|
|
59
151
|
repomeld
|
|
60
152
|
|
|
61
|
-
# Only
|
|
62
|
-
repomeld --ext
|
|
63
|
-
|
|
64
|
-
# Only files inside src/ folder
|
|
65
|
-
repomeld --include src/
|
|
153
|
+
# Only TypeScript and JSX files inside src/
|
|
154
|
+
repomeld --ext ts tsx --include src/
|
|
66
155
|
|
|
67
156
|
# Exclude test files
|
|
68
157
|
repomeld --exclude test spec __tests__
|
|
69
158
|
|
|
70
|
-
#
|
|
159
|
+
# Force-include your customized jQuery even though it is ignored by default
|
|
160
|
+
repomeld --force-include jquery
|
|
161
|
+
|
|
162
|
+
# Force-include multiple libs
|
|
163
|
+
repomeld --force-include vendor bootstrap select2
|
|
164
|
+
|
|
165
|
+
# Markdown style output — great for pasting into AI prompts
|
|
71
166
|
repomeld --style markdown --output context.md
|
|
72
167
|
|
|
73
|
-
# Minimal headers
|
|
74
|
-
repomeld --style minimal
|
|
168
|
+
# Minimal headers, no table of contents
|
|
169
|
+
repomeld --style minimal --no-toc
|
|
75
170
|
|
|
76
171
|
# Custom output file
|
|
77
172
|
repomeld --output all_code.txt
|
|
@@ -79,13 +174,13 @@ repomeld --output all_code.txt
|
|
|
79
174
|
# Skip large files (over 100 KB)
|
|
80
175
|
repomeld --max-size 100
|
|
81
176
|
|
|
82
|
-
# No
|
|
177
|
+
# No metadata shown
|
|
83
178
|
repomeld --no-toc --no-meta
|
|
84
179
|
|
|
85
|
-
# Dry run —
|
|
180
|
+
# Dry run — preview what would be included without writing
|
|
86
181
|
repomeld --dry-run
|
|
87
182
|
|
|
88
|
-
# Ignore
|
|
183
|
+
# Ignore additional folders not in the default list
|
|
89
184
|
repomeld --ignore dist .next coverage
|
|
90
185
|
|
|
91
186
|
# Combine options
|
|
@@ -97,7 +192,7 @@ repomeld --ext ts tsx --include src/ --style markdown --output ai_context.md
|
|
|
97
192
|
## Output Format (banner style — default)
|
|
98
193
|
|
|
99
194
|
```
|
|
100
|
-
# Generated by repomeld v1.
|
|
195
|
+
# Generated by repomeld v1.1.0
|
|
101
196
|
# Date : 2024-01-01T00:00:00.000Z
|
|
102
197
|
# Source : /your/project
|
|
103
198
|
# Files : 12
|
|
@@ -117,6 +212,8 @@ TABLE OF CONTENTS
|
|
|
117
212
|
<file contents>
|
|
118
213
|
```
|
|
119
214
|
|
|
215
|
+
---
|
|
216
|
+
|
|
120
217
|
## Output Format (markdown style)
|
|
121
218
|
|
|
122
219
|
````
|
|
@@ -129,12 +226,12 @@ TABLE OF CONTENTS
|
|
|
129
226
|
|
|
130
227
|
---
|
|
131
228
|
|
|
132
|
-
## Auto-ignored (always skipped)
|
|
229
|
+
## Auto-ignored (always skipped regardless of config)
|
|
133
230
|
|
|
134
231
|
- `node_modules/`, `.git/`, `dist/`, `build/`, `.next/`, `.nuxt/`, `.cache/`
|
|
135
232
|
- `.env`, `.env.local`, `.env.production`
|
|
136
233
|
- `.DS_Store`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml`
|
|
137
|
-
- Binary files (images, executables, etc.)
|
|
234
|
+
- Binary files (images, executables, fonts, etc.)
|
|
138
235
|
- The output file itself
|
|
139
236
|
|
|
140
237
|
---
|
|
@@ -144,4 +241,16 @@ TABLE OF CONTENTS
|
|
|
144
241
|
```bash
|
|
145
242
|
npm version patch # 1.0.0 → 1.0.1
|
|
146
243
|
npm publish
|
|
147
|
-
```
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
## Contributing
|
|
249
|
+
|
|
250
|
+
Found a popular library that should be in the ignore list? Open a PR and add it to `repomeld.ignore.json`!
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## License
|
|
255
|
+
|
|
256
|
+
MIT
|
package/bin/cli.js
CHANGED
|
@@ -21,8 +21,31 @@ const DEFAULT_IGNORE = [
|
|
|
21
21
|
"dist",
|
|
22
22
|
"build",
|
|
23
23
|
".cache",
|
|
24
|
+
"package.json",
|
|
25
|
+
"README.md",
|
|
26
|
+
"repomeld_output.txt",
|
|
24
27
|
];
|
|
25
28
|
|
|
29
|
+
function loadIgnoreConfig() {
|
|
30
|
+
const configPath = path.resolve(process.cwd(), "repomeld.ignore.json");
|
|
31
|
+
const pkgDir = path.resolve(__dirname, "..", "repomeld.ignore.json");
|
|
32
|
+
for (const loc of [configPath, pkgDir]) {
|
|
33
|
+
if (fs.existsSync(loc)) {
|
|
34
|
+
try {
|
|
35
|
+
const data = JSON.parse(fs.readFileSync(loc, "utf8"));
|
|
36
|
+
if (Array.isArray(data.ignore)) {
|
|
37
|
+
return data.ignore;
|
|
38
|
+
}
|
|
39
|
+
} catch {
|
|
40
|
+
console.warn(` ⚠️ Could not parse ${loc}, using defaults.`);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return [];
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const IGNORE_FROM_CONFIG = loadIgnoreConfig();
|
|
48
|
+
|
|
26
49
|
const LANGUAGE_MAP = {
|
|
27
50
|
js: "javascript", jsx: "javascript", ts: "typescript", tsx: "typescript",
|
|
28
51
|
py: "python", rb: "ruby", java: "java", cpp: "cpp", c: "c",
|
|
@@ -103,9 +126,11 @@ function formatSize(bytes) {
|
|
|
103
126
|
function printBanner() {
|
|
104
127
|
console.log(`
|
|
105
128
|
╔══════════════════════════════════╗
|
|
106
|
-
║ repomeld v${VERSION}
|
|
129
|
+
║ repomeld v${VERSION} ║
|
|
107
130
|
║ Meld your repo into one file ║
|
|
108
131
|
╚══════════════════════════════════╝`);
|
|
132
|
+
|
|
133
|
+
console.log("Developer is looking for freelance job susheelhbti@gmail.com");
|
|
109
134
|
}
|
|
110
135
|
|
|
111
136
|
function buildHeader(style, relativePath, filePath, lineCount, showMeta) {
|
|
@@ -144,7 +169,11 @@ function repomeld(options) {
|
|
|
144
169
|
|
|
145
170
|
const cwd = process.cwd();
|
|
146
171
|
const outputFile = path.resolve(cwd, options.output);
|
|
147
|
-
const
|
|
172
|
+
const forceInclude = options.forceInclude || [];
|
|
173
|
+
const rawIgnore = [...DEFAULT_IGNORE, ...IGNORE_FROM_CONFIG, ...(options.ignore || [])];
|
|
174
|
+
const ignoreList = forceInclude.length
|
|
175
|
+
? rawIgnore.filter((ig) => !forceInclude.some((fi) => ig.includes(fi) || fi.includes(ig)))
|
|
176
|
+
: rawIgnore;
|
|
148
177
|
const filterExts = options.ext || [];
|
|
149
178
|
const maxFileSizeBytes = (parseFloat(options.maxSize) || 500) * 1024;
|
|
150
179
|
const headerStyle = options.style || "banner";
|
|
@@ -160,6 +189,7 @@ function repomeld(options) {
|
|
|
160
189
|
console.log(` 📄 Output : ${path.relative(cwd, outputFile)}`);
|
|
161
190
|
console.log(` 🎨 Style : ${headerStyle}`);
|
|
162
191
|
if (filterExts.length) console.log(` 🔍 Filter : .${filterExts.join(", .")}`);
|
|
192
|
+
if (forceInclude.length) console.log(` 📌 Force : ${forceInclude.join(", ")}`);
|
|
163
193
|
if (dryRun) console.log(` 🧪 Dry run : no file will be written`);
|
|
164
194
|
console.log();
|
|
165
195
|
|
|
@@ -291,6 +321,7 @@ program
|
|
|
291
321
|
.option("--include <patterns...>", "Only include files matching patterns e.g. --include src/")
|
|
292
322
|
.option("--exclude <patterns...>", "Exclude files matching patterns e.g. --exclude test spec")
|
|
293
323
|
.option("-i, --ignore <names...>", "Extra folders/files to ignore e.g. --ignore dist .next")
|
|
324
|
+
.option("--force-include <names...>", "Force-include files ignored by default e.g. --force-include vendor bootstrap jquery")
|
|
294
325
|
.option("--max-size <kb>", "Skip files larger than N KB (default 500)","500")
|
|
295
326
|
|
|
296
327
|
// Formatting
|
|
@@ -0,0 +1,612 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_readme": "repomeld.ignore.json — auto-ignored files and folders. Use --force-include <name> CLI flag to override any entry here.",
|
|
3
|
+
"_version": "1.1.0",
|
|
4
|
+
|
|
5
|
+
"ignore": [
|
|
6
|
+
|
|
7
|
+
"repomeld_output.txt",
|
|
8
|
+
"repomeld_output.md",
|
|
9
|
+
|
|
10
|
+
"package.json",
|
|
11
|
+
"package-lock.json",
|
|
12
|
+
"yarn.lock",
|
|
13
|
+
"pnpm-lock.yaml",
|
|
14
|
+
"bun.lockb",
|
|
15
|
+
"shrinkwrap.json",
|
|
16
|
+
"npm-shrinkwrap.json",
|
|
17
|
+
"README.md",
|
|
18
|
+
"README.txt",
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"CHANGELOG.txt",
|
|
21
|
+
"CONTRIBUTING.md",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"LICENSE.md",
|
|
24
|
+
"LICENSE.txt",
|
|
25
|
+
".gitignore",
|
|
26
|
+
".gitattributes",
|
|
27
|
+
".editorconfig",
|
|
28
|
+
".nvmrc",
|
|
29
|
+
".npmrc",
|
|
30
|
+
".npmignore",
|
|
31
|
+
".browserslistrc",
|
|
32
|
+
|
|
33
|
+
".git",
|
|
34
|
+
".svn",
|
|
35
|
+
".hg",
|
|
36
|
+
".DS_Store",
|
|
37
|
+
"Thumbs.db",
|
|
38
|
+
"desktop.ini",
|
|
39
|
+
|
|
40
|
+
".env",
|
|
41
|
+
".env.local",
|
|
42
|
+
".env.development",
|
|
43
|
+
".env.production",
|
|
44
|
+
".env.staging",
|
|
45
|
+
".env.test",
|
|
46
|
+
".env.example",
|
|
47
|
+
|
|
48
|
+
"node_modules",
|
|
49
|
+
"dist",
|
|
50
|
+
"build",
|
|
51
|
+
"out",
|
|
52
|
+
"output",
|
|
53
|
+
".next",
|
|
54
|
+
".nuxt",
|
|
55
|
+
".cache",
|
|
56
|
+
".parcel-cache",
|
|
57
|
+
".vite",
|
|
58
|
+
".turbo",
|
|
59
|
+
".svelte-kit",
|
|
60
|
+
"coverage",
|
|
61
|
+
".nyc_output",
|
|
62
|
+
"__pycache__",
|
|
63
|
+
|
|
64
|
+
"vendor",
|
|
65
|
+
"vendors",
|
|
66
|
+
"lib",
|
|
67
|
+
"libs",
|
|
68
|
+
"plugins",
|
|
69
|
+
"components/vendor",
|
|
70
|
+
"assets/libs",
|
|
71
|
+
"assets/vendor",
|
|
72
|
+
"assets/plugins",
|
|
73
|
+
"assets/js/vendor",
|
|
74
|
+
"assets/js/libs",
|
|
75
|
+
"assets/css/vendor",
|
|
76
|
+
"public/libs",
|
|
77
|
+
"public/vendor",
|
|
78
|
+
"public/plugins",
|
|
79
|
+
"public/js/vendor",
|
|
80
|
+
"static/libs",
|
|
81
|
+
"static/vendor",
|
|
82
|
+
"static/plugins",
|
|
83
|
+
"wwwroot/lib",
|
|
84
|
+
"wwwroot/libs",
|
|
85
|
+
"wwwroot/vendor",
|
|
86
|
+
"resources/js/vendor",
|
|
87
|
+
"resources/css/vendor",
|
|
88
|
+
|
|
89
|
+
"bootstrap",
|
|
90
|
+
"bootstrap.css",
|
|
91
|
+
"bootstrap.min.css",
|
|
92
|
+
"bootstrap.js",
|
|
93
|
+
"bootstrap.min.js",
|
|
94
|
+
"bootstrap.bundle.js",
|
|
95
|
+
"bootstrap.bundle.min.js",
|
|
96
|
+
"bootstrap.esm.js",
|
|
97
|
+
"bootstrap.esm.min.js",
|
|
98
|
+
"bootstrap-grid.css",
|
|
99
|
+
"bootstrap-grid.min.css",
|
|
100
|
+
"bootstrap-reboot.css",
|
|
101
|
+
"bootstrap-reboot.min.css",
|
|
102
|
+
"bootstrap-utilities.css",
|
|
103
|
+
"bootstrap-utilities.min.css",
|
|
104
|
+
"bootstrap-icons",
|
|
105
|
+
"bootstrap-icons.css",
|
|
106
|
+
"bootstrap-icons.min.css",
|
|
107
|
+
|
|
108
|
+
"jquery.js",
|
|
109
|
+
"jquery.min.js",
|
|
110
|
+
"jquery.slim.js",
|
|
111
|
+
"jquery.slim.min.js",
|
|
112
|
+
"jquery-ui.js",
|
|
113
|
+
"jquery-ui.min.js",
|
|
114
|
+
"jquery-ui.css",
|
|
115
|
+
"jquery-ui.min.css",
|
|
116
|
+
"jquery.migrate.js",
|
|
117
|
+
"jquery.migrate.min.js",
|
|
118
|
+
"jquery.validate.js",
|
|
119
|
+
"jquery.validate.min.js",
|
|
120
|
+
"jquery.form.js",
|
|
121
|
+
"jquery.form.min.js",
|
|
122
|
+
"jquery.cookie.js",
|
|
123
|
+
"jquery.cookie.min.js",
|
|
124
|
+
"jquery.easing.js",
|
|
125
|
+
"jquery.easing.min.js",
|
|
126
|
+
"jquery.lazy.js",
|
|
127
|
+
"jquery.lazy.min.js",
|
|
128
|
+
"jquery.mask.js",
|
|
129
|
+
"jquery.mask.min.js",
|
|
130
|
+
"jquery.fancybox.js",
|
|
131
|
+
"jquery.fancybox.min.js",
|
|
132
|
+
"jquery.fancybox.css",
|
|
133
|
+
"jquery.fancybox.min.css",
|
|
134
|
+
|
|
135
|
+
"fontawesome",
|
|
136
|
+
"font-awesome",
|
|
137
|
+
"fontawesome-free",
|
|
138
|
+
"fontawesome-pro",
|
|
139
|
+
"all.css",
|
|
140
|
+
"all.min.css",
|
|
141
|
+
"all.js",
|
|
142
|
+
"all.min.js",
|
|
143
|
+
"solid.css",
|
|
144
|
+
"solid.min.css",
|
|
145
|
+
"regular.css",
|
|
146
|
+
"regular.min.css",
|
|
147
|
+
"brands.css",
|
|
148
|
+
"brands.min.css",
|
|
149
|
+
"light.css",
|
|
150
|
+
"light.min.css",
|
|
151
|
+
"duotone.css",
|
|
152
|
+
"duotone.min.css",
|
|
153
|
+
"thin.css",
|
|
154
|
+
"thin.min.css",
|
|
155
|
+
"fa-solid-900.woff",
|
|
156
|
+
"fa-solid-900.woff2",
|
|
157
|
+
"fa-solid-900.ttf",
|
|
158
|
+
"fa-regular-400.woff",
|
|
159
|
+
"fa-regular-400.woff2",
|
|
160
|
+
"fa-regular-400.ttf",
|
|
161
|
+
"fa-brands-400.woff",
|
|
162
|
+
"fa-brands-400.woff2",
|
|
163
|
+
"fa-brands-400.ttf",
|
|
164
|
+
"fa-light-300.woff2",
|
|
165
|
+
"fa-thin-100.woff2",
|
|
166
|
+
"fa-duotone-900.woff2",
|
|
167
|
+
|
|
168
|
+
"tailwind.css",
|
|
169
|
+
"tailwind.min.css",
|
|
170
|
+
"tailwindcss",
|
|
171
|
+
"tailwind.config.js",
|
|
172
|
+
"tailwind.config.ts",
|
|
173
|
+
|
|
174
|
+
"materialize.css",
|
|
175
|
+
"materialize.min.css",
|
|
176
|
+
"materialize.js",
|
|
177
|
+
"materialize.min.js",
|
|
178
|
+
"materialize",
|
|
179
|
+
|
|
180
|
+
"bulma.css",
|
|
181
|
+
"bulma.min.css",
|
|
182
|
+
"bulma",
|
|
183
|
+
|
|
184
|
+
"semantic.css",
|
|
185
|
+
"semantic.min.css",
|
|
186
|
+
"semantic.js",
|
|
187
|
+
"semantic.min.js",
|
|
188
|
+
"semantic-ui",
|
|
189
|
+
"fomantic-ui",
|
|
190
|
+
|
|
191
|
+
"foundation.css",
|
|
192
|
+
"foundation.min.css",
|
|
193
|
+
"foundation.js",
|
|
194
|
+
"foundation.min.js",
|
|
195
|
+
"foundation",
|
|
196
|
+
|
|
197
|
+
"uikit.css",
|
|
198
|
+
"uikit.min.css",
|
|
199
|
+
"uikit.js",
|
|
200
|
+
"uikit.min.js",
|
|
201
|
+
"uikit-icons.js",
|
|
202
|
+
"uikit-icons.min.js",
|
|
203
|
+
|
|
204
|
+
"material.css",
|
|
205
|
+
"material.min.css",
|
|
206
|
+
"material.js",
|
|
207
|
+
"material.min.js",
|
|
208
|
+
"mdl",
|
|
209
|
+
"material-design-lite",
|
|
210
|
+
|
|
211
|
+
"animate.css",
|
|
212
|
+
"animate.min.css",
|
|
213
|
+
"animate.compat.css",
|
|
214
|
+
|
|
215
|
+
"normalize.css",
|
|
216
|
+
"normalize.min.css",
|
|
217
|
+
"reset.css",
|
|
218
|
+
"reset.min.css",
|
|
219
|
+
"sanitize.css",
|
|
220
|
+
|
|
221
|
+
"popper.js",
|
|
222
|
+
"popper.min.js",
|
|
223
|
+
"popper.esm.js",
|
|
224
|
+
|
|
225
|
+
"axios.js",
|
|
226
|
+
"axios.min.js",
|
|
227
|
+
"axios.esm.js",
|
|
228
|
+
"axios.esm.min.js",
|
|
229
|
+
|
|
230
|
+
"lodash.js",
|
|
231
|
+
"lodash.min.js",
|
|
232
|
+
"lodash.esm.js",
|
|
233
|
+
"underscore.js",
|
|
234
|
+
"underscore.min.js",
|
|
235
|
+
|
|
236
|
+
"moment.js",
|
|
237
|
+
"moment.min.js",
|
|
238
|
+
"moment-timezone.js",
|
|
239
|
+
"moment-timezone.min.js",
|
|
240
|
+
"dayjs",
|
|
241
|
+
"dayjs.min.js",
|
|
242
|
+
"dayjs.js",
|
|
243
|
+
"date-fns",
|
|
244
|
+
|
|
245
|
+
"chart.js",
|
|
246
|
+
"chart.min.js",
|
|
247
|
+
"Chart.js",
|
|
248
|
+
"Chart.min.js",
|
|
249
|
+
"chart.esm.js",
|
|
250
|
+
"chartjs-plugin-datalabels.js",
|
|
251
|
+
"chartjs-plugin-datalabels.min.js",
|
|
252
|
+
|
|
253
|
+
"d3.js",
|
|
254
|
+
"d3.min.js",
|
|
255
|
+
"d3.esm.js",
|
|
256
|
+
"d3.node.js",
|
|
257
|
+
"d3-array.js",
|
|
258
|
+
"d3-scale.js",
|
|
259
|
+
"d3-shape.js",
|
|
260
|
+
"d3-selection.js",
|
|
261
|
+
|
|
262
|
+
"three.js",
|
|
263
|
+
"three.min.js",
|
|
264
|
+
"three.module.js",
|
|
265
|
+
"three.module.min.js",
|
|
266
|
+
"OrbitControls.js",
|
|
267
|
+
"GLTFLoader.js",
|
|
268
|
+
"DRACOLoader.js",
|
|
269
|
+
"three",
|
|
270
|
+
|
|
271
|
+
"gsap.js",
|
|
272
|
+
"gsap.min.js",
|
|
273
|
+
"gsap-core.js",
|
|
274
|
+
"ScrollTrigger.js",
|
|
275
|
+
"ScrollTrigger.min.js",
|
|
276
|
+
"Draggable.js",
|
|
277
|
+
"TweenMax.js",
|
|
278
|
+
"TweenLite.js",
|
|
279
|
+
"TweenMax.min.js",
|
|
280
|
+
"TweenLite.min.js",
|
|
281
|
+
"TimelineMax.js",
|
|
282
|
+
"TimelineMax.min.js",
|
|
283
|
+
"gsap",
|
|
284
|
+
|
|
285
|
+
"anime.js",
|
|
286
|
+
"anime.min.js",
|
|
287
|
+
"anime.esm.js",
|
|
288
|
+
|
|
289
|
+
"aos.css",
|
|
290
|
+
"aos.min.css",
|
|
291
|
+
"aos.js",
|
|
292
|
+
"aos.min.js",
|
|
293
|
+
"aos.esm.js",
|
|
294
|
+
"aos",
|
|
295
|
+
|
|
296
|
+
"swiper.css",
|
|
297
|
+
"swiper.min.css",
|
|
298
|
+
"swiper.js",
|
|
299
|
+
"swiper.min.js",
|
|
300
|
+
"swiper-bundle.css",
|
|
301
|
+
"swiper-bundle.min.css",
|
|
302
|
+
"swiper-bundle.js",
|
|
303
|
+
"swiper-bundle.min.js",
|
|
304
|
+
"swiper",
|
|
305
|
+
|
|
306
|
+
"slick.css",
|
|
307
|
+
"slick.min.css",
|
|
308
|
+
"slick-theme.css",
|
|
309
|
+
"slick-theme.min.css",
|
|
310
|
+
"slick.js",
|
|
311
|
+
"slick.min.js",
|
|
312
|
+
|
|
313
|
+
"owl.carousel.css",
|
|
314
|
+
"owl.carousel.min.css",
|
|
315
|
+
"owl.theme.default.css",
|
|
316
|
+
"owl.theme.default.min.css",
|
|
317
|
+
"owl.carousel.js",
|
|
318
|
+
"owl.carousel.min.js",
|
|
319
|
+
|
|
320
|
+
"glide.js",
|
|
321
|
+
"glide.min.js",
|
|
322
|
+
"glide.core.css",
|
|
323
|
+
"glide.core.min.css",
|
|
324
|
+
"glide.theme.css",
|
|
325
|
+
"glide.theme.min.css",
|
|
326
|
+
"splide.js",
|
|
327
|
+
"splide.min.js",
|
|
328
|
+
"splide.css",
|
|
329
|
+
"splide.min.css",
|
|
330
|
+
"flickity.js",
|
|
331
|
+
"flickity.min.js",
|
|
332
|
+
"flickity.css",
|
|
333
|
+
"flickity.min.css",
|
|
334
|
+
|
|
335
|
+
"select2.js",
|
|
336
|
+
"select2.min.js",
|
|
337
|
+
"select2.css",
|
|
338
|
+
"select2.min.css",
|
|
339
|
+
"select2",
|
|
340
|
+
"chosen.js",
|
|
341
|
+
"chosen.min.js",
|
|
342
|
+
"chosen.css",
|
|
343
|
+
"chosen.min.css",
|
|
344
|
+
"selectize.js",
|
|
345
|
+
"selectize.min.js",
|
|
346
|
+
"selectize.css",
|
|
347
|
+
"selectize.min.css",
|
|
348
|
+
|
|
349
|
+
"flatpickr.js",
|
|
350
|
+
"flatpickr.min.js",
|
|
351
|
+
"flatpickr.css",
|
|
352
|
+
"flatpickr.min.css",
|
|
353
|
+
"pikaday.js",
|
|
354
|
+
"pikaday.min.js",
|
|
355
|
+
"pikaday.css",
|
|
356
|
+
"pikaday.min.css",
|
|
357
|
+
"daterangepicker.js",
|
|
358
|
+
"daterangepicker.min.js",
|
|
359
|
+
"daterangepicker.css",
|
|
360
|
+
"daterangepicker.min.css",
|
|
361
|
+
"bootstrap-datepicker.js",
|
|
362
|
+
"bootstrap-datepicker.min.js",
|
|
363
|
+
"bootstrap-datepicker.css",
|
|
364
|
+
"bootstrap-datepicker.min.css",
|
|
365
|
+
|
|
366
|
+
"dataTables.js",
|
|
367
|
+
"dataTables.min.js",
|
|
368
|
+
"dataTables.css",
|
|
369
|
+
"dataTables.min.css",
|
|
370
|
+
"datatables.js",
|
|
371
|
+
"datatables.min.js",
|
|
372
|
+
"datatables.css",
|
|
373
|
+
"datatables.min.css",
|
|
374
|
+
"jquery.dataTables.js",
|
|
375
|
+
"jquery.dataTables.min.js",
|
|
376
|
+
"jquery.dataTables.css",
|
|
377
|
+
"jquery.dataTables.min.css",
|
|
378
|
+
"datatables",
|
|
379
|
+
|
|
380
|
+
"toastr.js",
|
|
381
|
+
"toastr.min.js",
|
|
382
|
+
"toastr.css",
|
|
383
|
+
"toastr.min.css",
|
|
384
|
+
"sweetalert2.js",
|
|
385
|
+
"sweetalert2.min.js",
|
|
386
|
+
"sweetalert2.css",
|
|
387
|
+
"sweetalert2.min.css",
|
|
388
|
+
"sweetalert.js",
|
|
389
|
+
"sweetalert.min.js",
|
|
390
|
+
"notyf.js",
|
|
391
|
+
"notyf.min.js",
|
|
392
|
+
"notyf.css",
|
|
393
|
+
"notyf.min.css",
|
|
394
|
+
"iziToast.js",
|
|
395
|
+
"iziToast.min.js",
|
|
396
|
+
"iziToast.css",
|
|
397
|
+
"iziToast.min.css",
|
|
398
|
+
"noty.js",
|
|
399
|
+
"noty.min.js",
|
|
400
|
+
"noty.css",
|
|
401
|
+
"noty.min.css",
|
|
402
|
+
|
|
403
|
+
"lightbox.js",
|
|
404
|
+
"lightbox.min.js",
|
|
405
|
+
"lightbox.css",
|
|
406
|
+
"lightbox.min.css",
|
|
407
|
+
"fancybox.js",
|
|
408
|
+
"fancybox.min.js",
|
|
409
|
+
"fancybox.css",
|
|
410
|
+
"fancybox.min.css",
|
|
411
|
+
"magnific-popup.js",
|
|
412
|
+
"magnific-popup.min.js",
|
|
413
|
+
"magnific-popup.css",
|
|
414
|
+
"magnific-popup.min.css",
|
|
415
|
+
"glightbox.js",
|
|
416
|
+
"glightbox.min.js",
|
|
417
|
+
"glightbox.css",
|
|
418
|
+
"glightbox.min.css",
|
|
419
|
+
|
|
420
|
+
"quill.js",
|
|
421
|
+
"quill.min.js",
|
|
422
|
+
"quill.snow.css",
|
|
423
|
+
"quill.bubble.css",
|
|
424
|
+
"quill",
|
|
425
|
+
"tinymce.js",
|
|
426
|
+
"tinymce.min.js",
|
|
427
|
+
"tinymce",
|
|
428
|
+
"ckeditor.js",
|
|
429
|
+
"ckeditor.min.js",
|
|
430
|
+
"ckeditor",
|
|
431
|
+
"codemirror.js",
|
|
432
|
+
"codemirror.min.js",
|
|
433
|
+
"codemirror.css",
|
|
434
|
+
"codemirror.min.css",
|
|
435
|
+
"codemirror",
|
|
436
|
+
"ace.js",
|
|
437
|
+
"ace.min.js",
|
|
438
|
+
"monaco-editor",
|
|
439
|
+
"summernote.js",
|
|
440
|
+
"summernote.min.js",
|
|
441
|
+
"summernote.css",
|
|
442
|
+
"summernote.min.css",
|
|
443
|
+
"froala_editor.js",
|
|
444
|
+
"froala_editor.min.js",
|
|
445
|
+
"froala_editor.css",
|
|
446
|
+
"froala_editor.min.css",
|
|
447
|
+
|
|
448
|
+
"highlight.js",
|
|
449
|
+
"highlight.min.js",
|
|
450
|
+
"highlight.css",
|
|
451
|
+
"highlight.min.css",
|
|
452
|
+
"hljs",
|
|
453
|
+
"prism.js",
|
|
454
|
+
"prism.min.js",
|
|
455
|
+
"prism.css",
|
|
456
|
+
"prism.min.css",
|
|
457
|
+
|
|
458
|
+
"video.js",
|
|
459
|
+
"video.min.js",
|
|
460
|
+
"video-js.css",
|
|
461
|
+
"video-js.min.css",
|
|
462
|
+
"plyr.js",
|
|
463
|
+
"plyr.min.js",
|
|
464
|
+
"plyr.css",
|
|
465
|
+
"plyr.min.css",
|
|
466
|
+
"mediaelement.js",
|
|
467
|
+
"mediaelement.min.js",
|
|
468
|
+
"mediaelement.css",
|
|
469
|
+
"mediaelement.min.css",
|
|
470
|
+
|
|
471
|
+
"leaflet.js",
|
|
472
|
+
"leaflet.min.js",
|
|
473
|
+
"leaflet.css",
|
|
474
|
+
"leaflet.min.css",
|
|
475
|
+
"leaflet",
|
|
476
|
+
"mapbox-gl.js",
|
|
477
|
+
"mapbox-gl.min.js",
|
|
478
|
+
"mapbox-gl.css",
|
|
479
|
+
"mapbox-gl.min.css",
|
|
480
|
+
|
|
481
|
+
"inputmask.js",
|
|
482
|
+
"inputmask.min.js",
|
|
483
|
+
"cleave.js",
|
|
484
|
+
"cleave.min.js",
|
|
485
|
+
"imask.js",
|
|
486
|
+
"imask.min.js",
|
|
487
|
+
"autosize.js",
|
|
488
|
+
"autosize.min.js",
|
|
489
|
+
"dropzone.js",
|
|
490
|
+
"dropzone.min.js",
|
|
491
|
+
"dropzone.css",
|
|
492
|
+
"dropzone.min.css",
|
|
493
|
+
"filepond.js",
|
|
494
|
+
"filepond.min.js",
|
|
495
|
+
"filepond.css",
|
|
496
|
+
"filepond.min.css",
|
|
497
|
+
|
|
498
|
+
"intro.js",
|
|
499
|
+
"intro.min.js",
|
|
500
|
+
"intro.css",
|
|
501
|
+
"intro.min.css",
|
|
502
|
+
"introjs.css",
|
|
503
|
+
"introjs.min.css",
|
|
504
|
+
"shepherd.js",
|
|
505
|
+
"shepherd.min.js",
|
|
506
|
+
"shepherd.css",
|
|
507
|
+
"shepherd.min.css",
|
|
508
|
+
|
|
509
|
+
"socket.io.js",
|
|
510
|
+
"socket.io.min.js",
|
|
511
|
+
"socket.io.esm.min.js",
|
|
512
|
+
|
|
513
|
+
"modernizr.js",
|
|
514
|
+
"modernizr.min.js",
|
|
515
|
+
"lazysizes.js",
|
|
516
|
+
"lazysizes.min.js",
|
|
517
|
+
"lottie.js",
|
|
518
|
+
"lottie.min.js",
|
|
519
|
+
"lottie-player.js",
|
|
520
|
+
"lottie-player.min.js",
|
|
521
|
+
"particles.js",
|
|
522
|
+
"particles.min.js",
|
|
523
|
+
"typed.js",
|
|
524
|
+
"typed.min.js",
|
|
525
|
+
"clipboard.js",
|
|
526
|
+
"clipboard.min.js",
|
|
527
|
+
"html2canvas.js",
|
|
528
|
+
"html2canvas.min.js",
|
|
529
|
+
"jspdf.js",
|
|
530
|
+
"jspdf.min.js",
|
|
531
|
+
"xlsx.js",
|
|
532
|
+
"xlsx.min.js",
|
|
533
|
+
"papaparse.js",
|
|
534
|
+
"papaparse.min.js",
|
|
535
|
+
"numeral.js",
|
|
536
|
+
"numeral.min.js",
|
|
537
|
+
"currency.js",
|
|
538
|
+
"currency.min.js",
|
|
539
|
+
"dompurify.js",
|
|
540
|
+
"dompurify.min.js",
|
|
541
|
+
"DOMPurify.js",
|
|
542
|
+
"DOMPurify.min.js",
|
|
543
|
+
"marked.js",
|
|
544
|
+
"marked.min.js",
|
|
545
|
+
"showdown.js",
|
|
546
|
+
"showdown.min.js",
|
|
547
|
+
"nprogress.js",
|
|
548
|
+
"nprogress.min.js",
|
|
549
|
+
"nprogress.css",
|
|
550
|
+
"nprogress.min.css",
|
|
551
|
+
"pace.js",
|
|
552
|
+
"pace.min.js",
|
|
553
|
+
"pace.css",
|
|
554
|
+
"pace.min.css",
|
|
555
|
+
"hotkeys.js",
|
|
556
|
+
"hotkeys.min.js",
|
|
557
|
+
"keymaster.js",
|
|
558
|
+
"keymaster.min.js",
|
|
559
|
+
"hammer.js",
|
|
560
|
+
"hammer.min.js",
|
|
561
|
+
"interact.js",
|
|
562
|
+
"interact.min.js",
|
|
563
|
+
"sortable.js",
|
|
564
|
+
"sortable.min.js",
|
|
565
|
+
"Sortable.js",
|
|
566
|
+
"Sortable.min.js",
|
|
567
|
+
"masonry.js",
|
|
568
|
+
"masonry.min.js",
|
|
569
|
+
"isotope.js",
|
|
570
|
+
"isotope.min.js",
|
|
571
|
+
"countup.js",
|
|
572
|
+
"countup.min.js",
|
|
573
|
+
"scrollreveal.js",
|
|
574
|
+
"scrollreveal.min.js",
|
|
575
|
+
|
|
576
|
+
"materialicons",
|
|
577
|
+
"material-icons",
|
|
578
|
+
"remixicon",
|
|
579
|
+
"remixicon.css",
|
|
580
|
+
"remixicon.min.css",
|
|
581
|
+
"boxicons",
|
|
582
|
+
"boxicons.css",
|
|
583
|
+
"boxicons.min.css",
|
|
584
|
+
"ionicons",
|
|
585
|
+
"ionicons.css",
|
|
586
|
+
"ionicons.min.css",
|
|
587
|
+
"feather.js",
|
|
588
|
+
"feather.min.js",
|
|
589
|
+
"lucide.js",
|
|
590
|
+
"lucide.min.js",
|
|
591
|
+
"phosphor.js",
|
|
592
|
+
"phosphor.min.js",
|
|
593
|
+
"lineicons",
|
|
594
|
+
"lineicons.css",
|
|
595
|
+
"lineicons.min.css",
|
|
596
|
+
|
|
597
|
+
"fullcalendar.js",
|
|
598
|
+
"fullcalendar.min.js",
|
|
599
|
+
"fullcalendar.css",
|
|
600
|
+
"fullcalendar.min.css",
|
|
601
|
+
"fullcalendar",
|
|
602
|
+
|
|
603
|
+
"AdminLTE",
|
|
604
|
+
"adminlte",
|
|
605
|
+
"metronic",
|
|
606
|
+
"Metronic",
|
|
607
|
+
"star-admin",
|
|
608
|
+
"gentelella",
|
|
609
|
+
"sb-admin",
|
|
610
|
+
"coreui"
|
|
611
|
+
]
|
|
612
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repomeld",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
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": {
|
|
@@ -23,9 +23,10 @@
|
|
|
23
23
|
"author": "",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"commander": "^11.0.0"
|
|
26
|
+
"commander": "^11.0.0"
|
|
27
|
+
|
|
27
28
|
},
|
|
28
29
|
"engines": {
|
|
29
30
|
"node": ">=14.0.0"
|
|
30
31
|
}
|
|
31
|
-
}
|
|
32
|
+
}
|