typedrequest/package.json

50 lines
1.2 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",
2023-08-04 14:55:25 +00:00
"version": "3.0.1",
2019-08-21 12:36:16 +00:00
"private": false,
"description": "make typed requests towards apis",
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": {
2023-08-04 14:10:47 +00:00
"@api.global/typedserver": "^3.0.1",
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/smartenv": "^5.0.3",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.7"
2019-08-22 14:44:44 +00:00
},
"dependencies": {
2023-08-04 14:55:24 +00:00
"@api.global/typedrequest-interfaces": "^3.0.1",
2023-08-04 14:10:47 +00:00
"@push.rocks/isounique": "^1.0.5",
"@push.rocks/lik": "^6.0.3",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/webrequest": "^3.0.32"
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"
2019-08-21 12:37:02 +00:00
]
2023-08-04 14:10:48 +00:00
}