smartmail/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2018-09-29 21:57:25 +00:00
{
2023-07-10 08:16:18 +00:00
"name": "@push.rocks/smartmail",
2023-07-28 03:49:45 +00:00
"version": "1.0.24",
2018-09-29 21:57:25 +00:00
"private": false,
"description": "a unified format for representing and dealing with mails",
2020-06-18 16:19:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 09:38:07 +00:00
"type": "module",
2018-09-29 21:57:25 +00:00
"author": "Lossless GmbH",
"license": "UNLICENSED",
"scripts": {
"test": "(tstest test/)",
"format": "(gitzone format)",
2023-07-28 03:49:44 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-08-07 09:38:07 +00:00
"buildDocs": "tsdoc"
2018-09-29 21:57:25 +00:00
},
"devDependencies": {
2023-06-13 21:23:11 +00:00
"@gitzone/tsbuild": "^2.1.66",
2023-07-28 03:49:44 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2018-09-29 21:57:25 +00:00
},
2019-10-26 21:45:35 +00:00
"dependencies": {
2023-07-28 03:49:44 +00:00
"@push.rocks/smartdns": "^5.0.4",
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartmustache": "^3.0.2",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartrequest": "^2.0.18"
2019-10-26 21:45:35 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-18 16:24:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-26 21:45:35 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-08-07 09:38:07 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-26 21:45:35 +00:00
]
2023-07-28 03:49:45 +00:00
}