6 Commits

Author SHA1 Message Date
2d2166cf40 1.0.23 2023-06-13 23:23:12 +02:00
2dd803fdc2 fix(core): update 2023-06-13 23:23:11 +02:00
bbcfa63944 1.0.22 2022-08-07 18:49:18 +02:00
015d2903b2 fix(core): update 2022-08-07 18:49:18 +02:00
f66deb9cd4 1.0.21 2022-08-07 18:09:20 +02:00
b786e44bf7 fix(core): update 2022-08-07 18:09:19 +02:00
5 changed files with 5832 additions and 2198 deletions

3592
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartmail",
"version": "1.0.20",
"version": "1.0.23",
"private": false,
"description": "a unified format for representing and dealing with mails",
"main": "dist_ts/index.js",
@ -15,17 +15,18 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
"@types/node": "^20.3.0"
},
"dependencies": {
"@pushrocks/smartdns": "^5.0.2",
"@pushrocks/smartfile": "^10.0.4",
"@pushrocks/smartmustache": "^2.0.12",
"@pushrocks/smartrequest": "^2.0.10"
"@pushrocks/smartdns": "^5.0.4",
"@pushrocks/smartfile": "^10.0.7",
"@pushrocks/smartmustache": "^3.0.2",
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartrequest": "^2.0.15"
},
"files": [
"ts/**/*",

4386
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartmail',
version: '1.0.20',
version: '1.0.23',
description: 'a unified format for representing and dealing with mails'
}

View File

@ -5,6 +5,7 @@
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext",
"esModuleInterop": true
"esModuleInterop": true,
"verbatimModuleSyntax": true,
}
}