pompelmi 0.30.0 โ 0.30.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 +22 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
<a href="https://github.com/pompelmi/pompelmi/network/members"><img alt="GitHub forks" src="https://img.shields.io/github/forks/pompelmi/pompelmi?style=social"></a>
|
|
83
83
|
<a href="https://github.com/pompelmi/pompelmi/watchers"><img alt="GitHub watchers" src="https://img.shields.io/github/watchers/pompelmi/pompelmi?style=social"></a>
|
|
84
84
|
<a href="https://github.com/pompelmi/pompelmi/issues"><img alt="open issues" src="https://img.shields.io/github/issues/pompelmi/pompelmi?color=orange"></a>
|
|
85
|
+
<a href="https://github.com/sponsors/pompelmi"><img alt="GitHub Sponsors" src="https://img.shields.io/github/sponsors/pompelmi?style=social&label=Sponsor"></a>
|
|
85
86
|
</p>
|
|
86
87
|
|
|
87
88
|
<p align="center">
|
|
@@ -1131,6 +1132,7 @@ _Want to share your experience? [Open a discussion](https://github.com/pompelmi/
|
|
|
1131
1132
|
- ๐ **[Issue Tracker](https://github.com/pompelmi/pompelmi/issues)** โ Report bugs, request features
|
|
1132
1133
|
- ๐ **[Security Policy](https://github.com/pompelmi/pompelmi/security)** โ Report security vulnerabilities privately
|
|
1133
1134
|
- ๐ผ **Commercial Support** โ For enterprise support and consulting, contact the maintainers
|
|
1135
|
+
- ๐ **[Sponsor pompelmi](https://github.com/sponsors/pompelmi)** โ Support ongoing development via GitHub Sponsors
|
|
1134
1136
|
|
|
1135
1137
|
**Supported Frameworks:**
|
|
1136
1138
|
- โ
Express
|
|
@@ -1160,6 +1162,26 @@ Thanks to all the amazing contributors who have helped make pompelmi better!
|
|
|
1160
1162
|
|
|
1161
1163
|
---
|
|
1162
1164
|
|
|
1165
|
+
## ๐ Sponsors
|
|
1166
|
+
|
|
1167
|
+
Pompelmi is free and open-source. If it saves you time or helps protect your users, consider supporting its development!
|
|
1168
|
+
|
|
1169
|
+
<p align="center">
|
|
1170
|
+
<a href="https://github.com/sponsors/pompelmi">
|
|
1171
|
+
<img src="https://img.shields.io/badge/Sponsor-pompelmi-EA4AAA?style=for-the-badge&logo=githubsponsors&logoColor=white" alt="Sponsor pompelmi on GitHub" />
|
|
1172
|
+
</a>
|
|
1173
|
+
</p>
|
|
1174
|
+
|
|
1175
|
+
Your sponsorship helps fund:
|
|
1176
|
+
- ๐งฌ New detection engine integrations
|
|
1177
|
+
- ๐งช Expanded test coverage and CI infrastructure
|
|
1178
|
+
- ๐ Documentation and examples
|
|
1179
|
+
- ๐ Security audits and CVE response
|
|
1180
|
+
|
|
1181
|
+
Thank you to all current and future sponsors for keeping this project alive!
|
|
1182
|
+
|
|
1183
|
+
---
|
|
1184
|
+
|
|
1163
1185
|
## โญ Star History
|
|
1164
1186
|
|
|
1165
1187
|
<p align="center">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pompelmi",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.1",
|
|
4
4
|
"description": "Fast, private malware scanner for Node.js file uploads. TypeScript-first library with Express, Koa, Fastify, Next.js & Nuxt/Nitro adapters. Features deep ZIP inspection, YARA integration, ZIP bomb protection, and real-time threat detection. Zero cloud dependencies - scan files in-process before they hit disk. Perfect for GDPR/HIPAA compliance.",
|
|
5
5
|
"main": "./dist/pompelmi.cjs",
|
|
6
6
|
"module": "./dist/pompelmi.esm.js",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"url": "https://github.com/pompelmi/pompelmi.git"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://pompelmi.github.io/pompelmi/",
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "github",
|
|
19
|
+
"url": "https://github.com/sponsors/pompelmi"
|
|
20
|
+
},
|
|
17
21
|
"pnpm": {
|
|
18
22
|
"overrides": {
|
|
19
23
|
"process": "0.11.10",
|