Files
webrequest/package.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2018-11-30 17:12:48 +01:00
{
2023-07-10 22:31:55 +02:00
"name": "@push.rocks/webrequest",
"version": "4.0.0",
2018-11-30 17:12:48 +01:00
"private": false,
"description": "Modern, fetch-compatible web request library with intelligent HTTP caching, retry strategies, and fault tolerance.",
2020-06-25 22:45:19 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-16 16:23:32 +01:00
"type": "module",
2018-11-30 17:12:48 +01:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose)",
2023-02-12 17:54:00 +01:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2018-11-30 17:12:48 +01:00
},
"devDependencies": {
2024-04-17 20:15:46 +02:00
"@api.global/typedserver": "^3.0.27",
"@git.zone/tsbuild": "^2.6.8",
2024-03-03 10:36:24 +01:00
"@git.zone/tsbundle": "^2.0.15",
"@git.zone/tstest": "^2.6.2",
2024-04-17 20:15:46 +02:00
"@types/node": "^20.12.7"
2018-11-30 17:12:48 +01:00
},
"dependencies": {
2023-07-27 13:59:21 +02:00
"@push.rocks/smartdelay": "^3.0.5",
2024-03-03 10:36:24 +01:00
"@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartjson": "^5.2.0",
2023-07-27 13:59:21 +02:00
"@push.rocks/smartpromise": "^4.0.3",
2023-10-20 18:01:12 +02:00
"@push.rocks/webstore": "^2.0.13"
},
"files": [
2020-06-25 22:45:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-07-08 02:15:14 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:41:19 +02:00
],
"keywords": [
"webrequest",
"HTTP",
"secure",
"browsers",
"caching",
"fault tolerance",
"json",
"abort",
"timeout",
"multi-endpoint",
"fetch API"
2024-05-29 14:17:42 +02:00
],
"homepage": "https://code.foss.global/push.rocks/webrequest#readme",
2024-05-29 14:17:42 +02:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webrequest.git"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
"bugs": {
"url": "https://code.foss.global/push.rocks/webrequest/issues"
},
"pnpm": {
"overrides": {}
2024-05-29 14:17:42 +02:00
}
}