typedrequest/package.json

64 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-03-03 09:42:15 +00:00
"version": "3.0.19",
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-03-03 09:42:14 +00:00
"@api.global/typedserver": "^3.0.27",
2024-02-20 16:40:30 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
2023-10-20 15:39:08 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-02-20 16:40:30 +00:00
"@git.zone/tstest": "^1.0.86",
2023-12-05 22:42:43 +00:00
"@push.rocks/smartenv": "^5.0.12",
2023-10-20 15:39:08 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-02-29 18:50:25 +00:00
"@types/node": "^20.11.24"
2019-08-22 14:44:44 +00:00
},
"dependencies": {
2024-02-29 18:50:25 +00:00
"@api.global/typedrequest-interfaces": "^3.0.18",
2023-08-04 14:10:47 +00:00
"@push.rocks/isounique": "^1.0.5",
2024-02-29 18:50:25 +00:00
"@push.rocks/lik": "^6.0.14",
2024-02-29 21:47:53 +00:00
"@push.rocks/smartbuffer": "^1.0.7",
2023-08-04 14:10:47 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.0.3",
2024-03-03 09:42:14 +00:00
"@push.rocks/webrequest": "^3.0.35",
2024-02-29 18:50:25 +00:00
"@push.rocks/webstream": "^1.0.8"
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-14 16:58:55 +00:00
}