Files
typedrequest/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

2019-08-21 14:36:16 +02:00
{
2023-08-04 16:10:47 +02:00
"name": "@api.global/typedrequest",
2026-03-01 19:23:51 +00:00
"version": "3.2.7",
2019-08-21 14:36:16 +02:00
"private": false,
2024-04-14 18:58:55 +02:00
"description": "A TypeScript library for making typed requests towards APIs, including facilities for handling requests, routing, and virtual stream handling.",
2020-06-15 16:39:48 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 20:02:58 +01:00
"type": "module",
2019-08-21 14:36:16 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild && tsbundle)",
2022-10-09 18:57:31 +02:00
"buildDocs": "tsdoc"
2019-08-21 14:36:16 +02:00
},
"devDependencies": {
"@api.global/typedserver": "^8.4.0",
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsbundle": "^2.9.0",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.2.0",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.3.3"
2019-08-22 16:44:44 +02:00
},
"dependencies": {
2024-05-05 16:42:22 +02:00
"@api.global/typedrequest-interfaces": "^3.0.19",
2023-08-04 16:10:47 +02:00
"@push.rocks/isounique": "^1.0.5",
"@push.rocks/lik": "^6.3.1",
"@push.rocks/smartbuffer": "^3.0.5",
2023-08-04 16:10:47 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartguard": "^3.1.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/webrequest": "^4.0.5",
2024-05-30 22:41:49 +02:00
"@push.rocks/webstream": "^1.0.10"
2019-08-21 14:36:16 +02:00
},
2019-08-21 14:37:02 +02:00
"files": [
2020-02-11 18:55:07 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-15 16:39:48 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-11 18:55:07 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-21 14:37:02 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-06 15:05:29 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:58:55 +02:00
],
"keywords": [
"TypeScript",
"API Requests",
"HTTP",
"Typed Programming",
"Request Routing",
"Response Handling",
"Virtual Streams",
"Asynchronous",
"Network Communication",
"Server Communication",
"API Integration"
2019-08-21 14:37:02 +02:00
]
2024-04-17 20:17:46 +02:00
}