webrequest/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2018-11-30 16:12:48 +00:00
{
"name": "@pushrocks/webrequest",
2023-02-12 16:46:50 +00:00
"version": "3.0.15",
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": {
2022-08-05 09:53:42 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
2023-02-12 16:46:49 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-08-05 09:53:42 +00:00
"@gitzone/tstest": "^1.0.73",
"@pushrocks/smartexpress": "^4.0.21",
2022-07-27 15:32:54 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-02-12 16:46:49 +00:00
"@types/node": "^18.13.0"
2018-11-30 16:12:48 +00:00
},
"dependencies": {
2023-02-11 17:19:02 +00:00
"@adobe/fetch": "^4.0.1",
2022-02-10 17:02:07 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-05-29 18:22:42 +00:00
"@pushrocks/smartenv": "^5.0.2",
2022-07-27 15:32:54 +00:00
"@pushrocks/smartjson": "^5.0.1",
2022-03-16 15:23:32 +00:00
"@pushrocks/smartpromise": "^3.1.7",
2022-08-05 09:53:42 +00:00
"@pushrocks/webstore": "^2.0.5"
},
"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-02-12 16:54:00 +00:00
}