typedrequest/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

2019-08-21 12:36:16 +00:00
{
2023-08-04 14:10:47 +00:00
"name": "@api.global/typedrequest",
2024-05-31 20:41:18 +00:00
"version": "3.0.30",
2019-08-21 12:36:16 +00:00
"private": false,
2024-04-14 16:58:55 +00: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 19:02:58 +00:00
"type": "module",
2019-08-21 12:36:16 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-05-29 18:43:29 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
2022-10-09 16:57:31 +00:00
"buildDocs": "tsdoc"
2019-08-21 12:36:16 +00:00
},
"devDependencies": {
2024-05-30 20:41:49 +00:00
"@api.global/typedserver": "^3.0.50",
2024-05-25 00:15:08 +00:00
"@git.zone/tsbuild": "^2.1.80",
2024-02-20 16:40:30 +00:00
"@git.zone/tsbundle": "^2.0.15",
2023-10-20 15:39:08 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-05-05 14:42:22 +00:00
"@git.zone/tstest": "^1.0.90",
2023-12-05 22:42:43 +00:00
"@push.rocks/smartenv": "^5.0.12",
2024-04-17 18:17:45 +00:00
"@push.rocks/tapbundle": "^5.0.23",
2024-05-30 20:41:49 +00:00
"@types/node": "^20.12.13"
2019-08-22 14:44:44 +00:00
},
"dependencies": {
2024-05-05 14:42:22 +00:00
"@api.global/typedrequest-interfaces": "^3.0.19",
2023-08-04 14:10:47 +00:00
"@push.rocks/isounique": "^1.0.5",
2024-05-05 14:42:22 +00:00
"@push.rocks/lik": "^6.0.15",
"@push.rocks/smartbuffer": "^3.0.4",
2023-08-04 14:10:47 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-05-30 20:41:49 +00:00
"@push.rocks/smartguard": "^3.0.2",
2023-08-04 14:10:47 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-04-17 18:35:41 +00:00
"@push.rocks/webrequest": "^3.0.37",
2024-05-30 20:41:49 +00:00
"@push.rocks/webstream": "^1.0.10"
2019-08-21 12:36:16 +00:00
},
2019-08-21 12:37:02 +00: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 12:37:02 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-06 15:05:29 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:58:55 +00:00
],
"keywords": [
"TypeScript",
"API Requests",
"HTTP",
"Typed Programming",
"Request Routing",
"Response Handling",
"Virtual Streams",
"Asynchronous",
"Network Communication",
"Server Communication",
"API Integration"
2019-08-21 12:37:02 +00:00
]
2024-04-17 18:17:46 +00:00
}