typedserver/package.json

111 lines
3.6 KiB
JSON
Raw Normal View History

2023-03-29 12:54:07 +00:00
{
2023-08-03 18:45:09 +00:00
"name": "@api.global/typedserver",
2024-05-25 01:06:18 +00:00
"version": "3.0.50",
2024-04-14 17:00:39 +00:00
"description": "A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.",
2023-03-29 12:54:07 +00:00
"type": "module",
2024-05-11 10:51:20 +00:00
"exports": {
".": "./dist_ts/index.js",
2024-05-24 23:24:02 +00:00
"./backend": "./dist_ts/index.js",
"./edgeworker": "./dist_ts_edgeworker/index.js",
"./web_inject": "./dist_ts_web_inject/index.js",
"./web_serviceworker": "./dist_ts_web_serviceworker/index.js",
"./web_serviceworker_client": "./dist_ts_web_serviceworker_client/index.js"
2024-05-11 10:51:20 +00:00
},
2023-03-29 12:54:07 +00:00
"scripts": {
"test": "npm run build && tstest test/",
2024-05-17 15:20:29 +00:00
"build": "tsbuild tsfolders --web --allowimplicitany && npm run bundle",
2024-05-14 13:28:09 +00:00
"bundle": "tsbundle --from ./ts_web_inject/index.ts --to ./dist_ts_web_inject/bundle.js && tsbundle --from ./ts_web_serviceworker/index.ts --to ./dist_ts_web_serviceworker/serviceworker.bundle.js",
2024-05-11 10:51:20 +00:00
"interfaces": "tsbuild interfaces --web --allowimplicitany --skiplibcheck",
"docs": "tsdoc aidoc"
2023-03-29 12:54:07 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/pushrocks/easyserve.git"
},
"keywords": [
2024-04-14 17:00:39 +00:00
"TypeScript",
"static file serving",
"live reload",
"compression",
"typed requests",
"HTTP server",
"SSL",
"cors",
"express middleware",
"proxy",
"sitemap",
"feeds",
"robots.txt",
"compression (gzip, deflate, brotli)"
2023-03-29 12:54:07 +00:00
],
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/easyserve/issues"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"homepage": "https://github.com/pushrocks/easyserve",
"dependencies": {
2024-05-25 00:29:08 +00:00
"@api.global/typedrequest": "^3.0.25",
2024-05-11 10:51:20 +00:00
"@api.global/typedrequest-interfaces": "^3.0.19",
2024-04-18 23:01:29 +00:00
"@api.global/typedsocket": "^3.0.1",
2024-05-14 00:18:42 +00:00
"@cloudflare/workers-types": "^4.20240512.0",
2024-05-25 00:29:08 +00:00
"@design.estate/dees-comms": "^1.0.27",
2024-04-18 23:01:29 +00:00
"@push.rocks/lik": "^6.0.15",
2024-05-11 10:51:20 +00:00
"@push.rocks/smartchok": "^1.0.34",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-01-08 13:35:34 +00:00
"@push.rocks/smartenv": "^5.0.12",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartfeed": "^1.0.11",
2024-05-25 00:29:08 +00:00
"@push.rocks/smartfile": "^11.0.15",
2024-04-18 23:01:29 +00:00
"@push.rocks/smartjson": "^5.0.19",
2024-05-25 00:29:08 +00:00
"@push.rocks/smartlog": "^3.0.6",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartlog-destination-devtools": "^1.0.10",
2024-05-13 21:24:08 +00:00
"@push.rocks/smartlog-interfaces": "^3.0.0",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartmanifest": "^2.0.2",
2024-05-13 21:24:08 +00:00
"@push.rocks/smartmatch": "^2.0.0",
2024-05-25 00:29:08 +00:00
"@push.rocks/smartmime": "^2.0.0",
2024-05-14 13:28:09 +00:00
"@push.rocks/smartntml": "^2.0.4",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartopen": "^2.0.0",
2024-05-11 10:51:20 +00:00
"@push.rocks/smartpath": "^5.0.18",
2023-08-03 18:45:09 +00:00
"@push.rocks/smartpromise": "^4.0.2",
2024-04-18 23:01:29 +00:00
"@push.rocks/smartrequest": "^2.0.22",
2023-11-06 10:29:52 +00:00
"@push.rocks/smartrx": "^3.0.7",
2023-10-20 16:13:10 +00:00
"@push.rocks/smartsitemap": "^2.0.3",
2024-05-25 00:29:08 +00:00
"@push.rocks/smartstream": "^3.0.38",
2023-10-20 16:13:10 +00:00
"@push.rocks/smarttime": "^4.0.6",
2024-05-11 10:51:20 +00:00
"@push.rocks/taskbuffer": "^3.1.7",
"@push.rocks/webrequest": "^3.0.37",
2024-05-25 00:29:08 +00:00
"@push.rocks/webstore": "^2.0.19",
2024-04-18 23:01:29 +00:00
"@tsclass/tsclass": "^4.0.54",
2024-01-08 13:35:34 +00:00
"@types/express": "^4.17.21",
2023-03-30 13:15:48 +00:00
"body-parser": "^1.20.2",
"cors": "^2.8.5",
2024-04-18 23:01:29 +00:00
"express": "^4.19.2",
2023-03-30 13:15:48 +00:00
"express-force-ssl": "^0.3.2",
2024-04-18 23:01:29 +00:00
"lit": "^3.1.3"
2023-03-29 12:54:07 +00:00
},
"devDependencies": {
2024-05-25 00:29:08 +00:00
"@git.zone/tsbuild": "^2.1.80",
2024-02-21 00:06:52 +00:00
"@git.zone/tsbundle": "^2.0.15",
2023-10-20 16:13:10 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-04-18 23:01:29 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
2024-05-11 10:51:20 +00:00
"@types/node": "^20.12.11"
2023-03-29 12:54:07 +00:00
},
"private": false,
"browserslist": [
"last 1 chrome versions"
]
2024-04-18 23:01:29 +00:00
}