typedserver/package.json

82 lines
2.3 KiB
JSON
Raw Normal View History

2023-03-29 12:54:07 +00:00
{
"name": "@apiglobal/typedserver",
2023-07-02 09:35:37 +00:00
"version": "2.0.65",
2023-03-29 12:54:07 +00:00
"description": "easy serving of static files",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "npm run build && tstest test/",
"build": "tsbuild --web --allowimplicitany && tsbundle --from ./ts_web/index.ts --to ./dist_ts_web/bundle.js",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://github.com/pushrocks/easyserve.git"
},
"keywords": [
"serve",
"browser-sync"
],
"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": {
"@apiglobal/typedrequest": "^2.0.12",
"@apiglobal/typedrequest-interfaces": "^2.0.1",
2023-06-11 23:06:21 +00:00
"@apiglobal/typedsocket": "^2.0.24",
2023-03-30 13:15:48 +00:00
"@pushrocks/lik": "^6.0.2",
2023-03-29 12:54:07 +00:00
"@pushrocks/smartchok": "^1.0.23",
2023-06-11 23:06:21 +00:00
"@pushrocks/smartdelay": "^3.0.1",
2023-03-30 13:15:48 +00:00
"@pushrocks/smartenv": "^5.0.5",
"@pushrocks/smartfeed": "^1.0.11",
2023-07-01 10:29:35 +00:00
"@pushrocks/smartfile": "^10.0.25",
2023-07-01 16:25:27 +00:00
"@pushrocks/smartlog": "^3.0.2",
2023-03-29 12:54:07 +00:00
"@pushrocks/smartlog-destination-devtools": "^1.0.10",
2023-06-11 23:06:21 +00:00
"@pushrocks/smartmanifest": "^2.0.2",
2023-03-30 13:15:48 +00:00
"@pushrocks/smartmime": "^1.0.5",
2023-03-29 12:54:07 +00:00
"@pushrocks/smartopen": "^2.0.0",
"@pushrocks/smartpath": "^5.0.5",
2023-06-11 23:06:21 +00:00
"@pushrocks/smartpromise": "^4.0.2",
"@pushrocks/smartrequest": "^2.0.15",
"@pushrocks/smartrx": "^3.0.2",
2023-03-30 13:15:48 +00:00
"@pushrocks/smartsitemap": "^2.0.1",
"@pushrocks/smarttime": "^4.0.1",
2023-06-11 23:06:21 +00:00
"@pushrocks/webstore": "^2.0.8",
"@tsclass/tsclass": "^4.0.42",
2023-07-01 15:23:49 +00:00
"@types/express": "^4.17.17",
2023-03-30 13:15:48 +00:00
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-force-ssl": "^0.3.2",
2023-06-11 23:06:21 +00:00
"lit": "^2.7.5"
2023-03-29 12:54:07 +00:00
},
"devDependencies": {
2023-06-11 23:06:21 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.42",
2023-07-01 16:25:27 +00:00
"@gitzone/tstest": "^1.0.74",
2023-07-01 10:29:35 +00:00
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.3"
2023-03-29 12:54:07 +00:00
},
"private": false,
"browserslist": [
"last 1 chrome versions"
]
2023-07-01 10:29:36 +00:00
}