smartrequest/package.json

68 lines
1.7 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",
2025-04-03 06:52:58 +00:00
"version": "2.1.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.",
2020-08-24 12:01:38 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-29 01:19:50 +02:00
"type": "module",
2017-01-28 20:02:52 +01:00
"scripts": {
2020-08-24 12:01:38 +00:00
"test": "(tstest test/ --web)",
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": "Lossless GmbH",
"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": {
"@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.1"
2017-01-29 00:51:47 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.90",
2023-11-09 21:22:57 +01:00
"@pushrocks/tapbundle": "^5.0.8",
"@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
}