@devisfuture/mega-collection 2.3.0 → 2.3.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.
- package/README.md +3 -7
- package/package.json +1 -99
- package/LICENSE +0 -21
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<img src="./illustration.png" alt="mega-collection illustration" width="100%" />
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
1
|
[](https://www.npmjs.com/package/@devisfuture/mega-collection) [](https://www.npmjs.com/package/@devisfuture/mega-collection) [](https://codecov.io/gh/trae-op/mega-collection) [](https://www.typescriptlang.org/) [](https://github.com/trae-op/mega-collection)
|
|
6
2
|
|
|
7
3
|
If this package saved you some time, a ⭐ on GitHub would be much appreciated.
|
|
@@ -642,12 +638,12 @@ npm run dev # Watch mode
|
|
|
642
638
|
|
|
643
639
|
## Contributing
|
|
644
640
|
|
|
645
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
641
|
+
See [CONTRIBUTING.md](https://github.com/trae-op/mega-collection/blob/main/CONTRIBUTING.md) for guidelines.
|
|
646
642
|
|
|
647
643
|
## Security
|
|
648
644
|
|
|
649
|
-
See [SECURITY.md](SECURITY.md) for our security policy.
|
|
645
|
+
See [SECURITY.md](https://github.com/trae-op/mega-collection/blob/main/SECURITY.md) for our security policy.
|
|
650
646
|
|
|
651
647
|
## License
|
|
652
648
|
|
|
653
|
-
MIT — see [LICENSE](LICENSE) for details.
|
|
649
|
+
MIT — see [LICENSE](https://github.com/trae-op/mega-collection/blob/main/LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,99 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@devisfuture/mega-collection",
|
|
3
|
-
"version": "2.3.0",
|
|
4
|
-
"description": "High-performance search, filter & sort engine for 100K+ item collections in JavaScript/TypeScript",
|
|
5
|
-
"exports": {
|
|
6
|
-
".": {
|
|
7
|
-
"types": "./dist/index.d.mts",
|
|
8
|
-
"default": "./dist/index.mjs"
|
|
9
|
-
},
|
|
10
|
-
"./search": {
|
|
11
|
-
"types": "./dist/search/index.d.mts",
|
|
12
|
-
"default": "./dist/search/index.mjs"
|
|
13
|
-
},
|
|
14
|
-
"./filter": {
|
|
15
|
-
"types": "./dist/filter/index.d.mts",
|
|
16
|
-
"default": "./dist/filter/index.mjs"
|
|
17
|
-
},
|
|
18
|
-
"./sort": {
|
|
19
|
-
"types": "./dist/sort/index.d.mts",
|
|
20
|
-
"default": "./dist/sort/index.mjs"
|
|
21
|
-
},
|
|
22
|
-
"./merge": {
|
|
23
|
-
"types": "./dist/merge/index.d.mts",
|
|
24
|
-
"default": "./dist/merge/index.mjs"
|
|
25
|
-
},
|
|
26
|
-
"./package.json": "./package.json"
|
|
27
|
-
},
|
|
28
|
-
"typesVersions": {
|
|
29
|
-
"*": {
|
|
30
|
-
"search": [
|
|
31
|
-
"./dist/search/index.d.mts"
|
|
32
|
-
],
|
|
33
|
-
"filter": [
|
|
34
|
-
"./dist/filter/index.d.mts"
|
|
35
|
-
],
|
|
36
|
-
"sort": [
|
|
37
|
-
"./dist/sort/index.d.mts"
|
|
38
|
-
],
|
|
39
|
-
"merge": [
|
|
40
|
-
"./dist/merge/index.d.mts"
|
|
41
|
-
]
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"files": [
|
|
45
|
-
"dist"
|
|
46
|
-
],
|
|
47
|
-
"sideEffects": false,
|
|
48
|
-
"scripts": {
|
|
49
|
-
"build": "tsup",
|
|
50
|
-
"build:watch": "tsup --watch",
|
|
51
|
-
"dev": "tsup --watch",
|
|
52
|
-
"test": "vitest run",
|
|
53
|
-
"test:watch": "vitest",
|
|
54
|
-
"test:coverage": "vitest run --coverage",
|
|
55
|
-
"test:ci": "vitest run --coverage --reporter=verbose --reporter=json",
|
|
56
|
-
"clean": "rm -rf dist",
|
|
57
|
-
"prepublishOnly": "npm run build",
|
|
58
|
-
"typecheck": "tsc --noEmit"
|
|
59
|
-
},
|
|
60
|
-
"keywords": [
|
|
61
|
-
"javascript",
|
|
62
|
-
"search",
|
|
63
|
-
"filter",
|
|
64
|
-
"sort",
|
|
65
|
-
"collection",
|
|
66
|
-
"performance",
|
|
67
|
-
"trigram",
|
|
68
|
-
"inverted-index",
|
|
69
|
-
"hashmap",
|
|
70
|
-
"large-dataset",
|
|
71
|
-
"big-data",
|
|
72
|
-
"typescript",
|
|
73
|
-
"zero-dependencies",
|
|
74
|
-
"tree-shakeable",
|
|
75
|
-
"esm",
|
|
76
|
-
"indexer",
|
|
77
|
-
"50k",
|
|
78
|
-
"100k",
|
|
79
|
-
"text-search",
|
|
80
|
-
"multi-filter",
|
|
81
|
-
"sort-engine",
|
|
82
|
-
"merge-engines",
|
|
83
|
-
"o1-lookup"
|
|
84
|
-
],
|
|
85
|
-
"publishConfig": {
|
|
86
|
-
"access": "public"
|
|
87
|
-
},
|
|
88
|
-
"repository": {
|
|
89
|
-
"type": "git",
|
|
90
|
-
"url": "git+https://github.com/trae-op/mega-collection.git"
|
|
91
|
-
},
|
|
92
|
-
"devDependencies": {
|
|
93
|
-
"@vitest/coverage-v8": "^2.1.9",
|
|
94
|
-
"tsup": "^8.0.0",
|
|
95
|
-
"typescript": "^5.3.0",
|
|
96
|
-
"vitest": "^2.1.8"
|
|
97
|
-
},
|
|
98
|
-
"license": "MIT"
|
|
99
|
-
}
|
|
1
|
+
{"name":"@devisfuture/mega-collection","version":"2.3.2","license":"MIT","sideEffects":false,"types":"./dist/index.d.mts","exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./search":{"types":"./dist/search/index.d.mts","default":"./dist/search/index.mjs"},"./filter":{"types":"./dist/filter/index.d.mts","default":"./dist/filter/index.mjs"},"./sort":{"types":"./dist/sort/index.d.mts","default":"./dist/sort/index.mjs"},"./merge":{"types":"./dist/merge/index.d.mts","default":"./dist/merge/index.mjs"},"./package.json":"./package.json"},"typesVersions":{"*":{"search":["./dist/search/index.d.mts"],"filter":["./dist/filter/index.d.mts"],"sort":["./dist/sort/index.d.mts"],"merge":["./dist/merge/index.d.mts"]}},"repository":{"type":"git","url":"https://github.com/trae-op/mega-collection"}}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 devisfuture
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|