smartproxy/package.json

88 lines
2.2 KiB
JSON
Raw Normal View History

2019-08-20 17:50:17 +02:00
{
2023-07-10 10:17:33 +02:00
"name": "@push.rocks/smartproxy",
2025-03-11 19:38:41 +00:00
"version": "3.41.1",
2019-08-20 17:50:17 +02:00
"private": false,
"description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.",
2021-02-02 15:55:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-29 00:49:46 +02:00
"type": "module",
2019-08-20 17:50:17 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-07-29 00:49:46 +02:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-29 01:52:34 +02:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2019-08-20 17:50:17 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.6",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.5.10",
"@types/node": "^22.13.10",
"typescript": "^5.8.2"
2019-08-20 17:50:17 +02:00
},
2019-08-20 18:42:52 +02:00
"dependencies": {
"@push.rocks/lik": "^6.1.0",
2023-07-27 16:27:50 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^2.0.23",
"@push.rocks/smartstring": "^4.0.15",
"@tsclass/tsclass": "^5.0.0",
"@types/minimatch": "^5.1.2",
"@types/ws": "^8.18.0",
"acme-client": "^5.4.0",
"minimatch": "^10.0.1",
"pretty-ms": "^9.2.0",
"ws": "^8.18.1"
2019-08-20 18:43:15 +02:00
},
"files": [
2020-02-07 13:04:11 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-02-02 15:55:25 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-07 13:04:11 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-20 18:43:15 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2021-02-02 15:55:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:10:41 +02:00
],
"keywords": [
"proxy",
"network",
"traffic management",
"SSL",
"TLS",
"WebSocket",
"port proxying",
"dynamic routing",
"authentication",
"real-time applications",
2024-04-14 18:10:41 +02:00
"high workload",
"HTTPS",
2024-04-14 18:10:41 +02:00
"reverse proxy",
"server",
"network security"
2024-05-29 14:15:35 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartproxy#readme",
2024-05-29 14:15:35 +02:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartproxy.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartproxy/issues"
},
"pnpm": {
"overrides": {},
"onlyBuiltDependencies": [
"esbuild",
"mongodb-memory-server",
"puppeteer"
]
2024-05-29 14:15:35 +02:00
}
2025-02-27 19:57:28 +00:00
}