add packages

This commit is contained in:
fullgream 2025-05-16 03:11:44 +03:00
parent 6c4815beb1
commit ea46dfe0a5
2 changed files with 35 additions and 0 deletions

29
package-lock.json generated Normal file
View File

@ -0,0 +1,29 @@
{
"name": "pop3-to-imap",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"fs": "^0.0.1-security",
"node-pop3": "^0.9.1"
}
},
"node_modules/fs": {
"version": "0.0.1-security",
"resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz",
"integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w=="
},
"node_modules/node-pop3": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/node-pop3/-/node-pop3-0.9.1.tgz",
"integrity": "sha512-HYSHfNWb91tEao67sKOKurHihOoWjf78oGMRjaXXEebLGfTA/bTjmF1E5Vl9H4i4UEYiZDEwHvm/l0Q3Hg1rGA==",
"bin": {
"pop": "bin/pop.js"
},
"engines": {
"node": ">=14.13.0"
}
}
}
}

6
package.json Normal file
View File

@ -0,0 +1,6 @@
{
"dependencies": {
"fs": "^0.0.1-security",
"node-pop3": "^0.9.1"
}
}