Files
smartrequest/package.json

72 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2017-01-28 20:02:52 +01:00
{
2023-07-10 10:17:43 +02:00
"name": "@push.rocks/smartrequest",
"version": "4.0.0",
2018-06-13 23:12:37 +02:00
"private": false,
2024-04-14 03:54:39 +02:00
"description": "A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.",
"exports": {
".": "./dist_ts_web/index.js",
"./core_node": "./dist_ts/core_node/index.js",
"./core_fetch": "./dist_ts/core_fetch/index.js"
},
2022-07-29 01:19:50 +02:00
"type": "module",
2017-01-28 20:02:52 +01:00
"scripts": {
2025-07-28 14:21:42 +00:00
"test": "(tstest test/ --verbose)",
2022-07-29 01:19:50 +02:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2017-01-28 20:02:52 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:15:43 +02:00
"url": "https://code.foss.global/push.rocks/smartrequest.git"
2017-01-28 20:02:52 +01:00
},
"keywords": [
2024-04-14 03:54:39 +02:00
"HTTP",
"HTTPS",
"request library",
"form data",
"file uploads",
"JSON",
"binary data",
"streams",
"keepAlive",
"TypeScript",
"modern web requests",
"drop-in replacement"
2017-01-28 20:02:52 +01:00
],
"author": "Task Venture Capital GmbH",
2017-01-28 20:02:52 +01:00
"license": "MIT",
"bugs": {
2023-11-09 21:22:57 +01:00
"url": "https://gitlab.com/push.rocks/smartrequest/issues"
2017-01-28 20:02:52 +01:00
},
2024-05-29 14:15:43 +02:00
"homepage": "https://code.foss.global/push.rocks/smartrequest",
2017-01-29 00:51:47 +01:00
"dependencies": {
2025-07-28 14:30:27 +00:00
"@push.rocks/smartenv": "^5.0.13",
2025-07-28 22:37:36 +00:00
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.0.4",
"@push.rocks/smarturl": "^3.1.0",
2023-11-09 21:22:57 +01:00
"agentkeepalive": "^4.5.0",
"form-data": "^4.0.4"
2017-01-29 00:51:47 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.2",
"@types/node": "^22.9.0"
2019-08-16 21:38:50 +02:00
},
"files": [
2019-11-21 17:32:30 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-24 12:01:38 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-21 17:32:30 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-16 21:38:50 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-08-24 12:01:38 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
2024-11-06 20:58:17 +01:00
}