smartproxy/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-20 15:50:17 +00:00
{
"name": "@pushrocks/smartproxy",
2023-01-05 18:21:03 +00:00
"version": "3.0.50",
2019-08-20 15:50:17 +00:00
"private": false,
"description": "a proxy for handling high workloads of proxying",
2021-02-02 15:55:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 22:49:46 +00:00
"type": "module",
2019-08-20 15:50:17 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-07-28 22:49:46 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 23:52:34 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2019-08-20 15:50:17 +00:00
},
"devDependencies": {
2022-08-04 12:21:05 +00:00
"@gitzone/tsbuild": "^2.1.65",
2023-01-04 14:59:31 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-08-04 12:21:05 +00:00
"@gitzone/tstest": "^1.0.73",
2022-07-28 22:49:46 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-01-04 14:59:31 +00:00
"@types/node": "^18.7.8"
2019-08-20 15:50:17 +00:00
},
2019-08-20 16:42:52 +00:00
"dependencies": {
2022-07-28 22:49:46 +00:00
"@pushrocks/lik": "^6.0.0",
2022-07-30 11:30:25 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-07-28 22:49:46 +00:00
"@pushrocks/smartpromise": "^3.1.7",
2022-08-06 20:42:05 +00:00
"@pushrocks/smartrequest": "^2.0.10",
2022-07-28 22:49:46 +00:00
"@pushrocks/smartstring": "^4.0.2",
2023-01-04 14:59:31 +00:00
"@tsclass/tsclass": "^4.0.19",
2022-07-28 22:49:46 +00:00
"@types/ws": "^8.5.3",
"ws": "^8.8.1"
2019-08-20 16:43:15 +00: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 16:43:15 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-02-02 15:55:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-20 16:43:15 +00:00
]
2022-07-28 23:52:34 +00:00
}