webrequest/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2018-11-30 16:12:48 +00:00
{
2023-07-10 20:31:55 +00:00
"name": "@push.rocks/webrequest",
2023-07-27 11:59:38 +00:00
"version": "3.0.32",
2018-11-30 16:12:48 +00:00
"private": false,
"description": "securely request from browsers",
2020-06-25 22:45:19 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-16 15:23:32 +00:00
"type": "module",
2018-11-30 16:12:48 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-12-06 00:02:35 +00:00
"test": "(tstest test/ --web)",
2023-02-12 16:54:00 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2018-11-30 16:12:48 +00:00
},
"devDependencies": {
2023-07-03 08:08:04 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
2023-07-27 11:59:21 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2018-11-30 16:12:48 +00:00
},
"dependencies": {
2023-07-09 15:24:52 +00:00
"@apiglobal/typedserver": "^2.0.65",
2023-07-27 11:59:21 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartjson": "^5.0.6",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/webstore": "^2.0.8"
},
"files": [
2020-06-25 22:45:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-07-08 02:15:14 +00:00
],
"browserslist": [
"last 1 chrome versions"
]
2023-07-10 20:31:55 +00:00
}