webrequest/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2018-11-30 16:12:48 +00:00
{
"name": "@pushrocks/webrequest",
2023-07-09 15:24:53 +00:00
"version": "3.0.28",
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",
"@gitzone/tsrun": "^1.2.42",
2022-08-05 09:53:42 +00:00
"@gitzone/tstest": "^1.0.73",
2023-07-03 08:08:04 +00:00
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.3"
2018-11-30 16:12:48 +00:00
},
"dependencies": {
2023-07-03 08:08:04 +00:00
"@adobe/fetch": "^4.0.13",
2023-07-09 15:24:52 +00:00
"@apiglobal/typedserver": "^2.0.65",
2023-05-01 10:26:15 +00:00
"@pushrocks/smartdelay": "^3.0.1",
2022-05-29 18:22:42 +00:00
"@pushrocks/smartenv": "^5.0.2",
2023-07-03 08:08:04 +00:00
"@pushrocks/smartjson": "^5.0.6",
2023-05-01 10:26:15 +00:00
"@pushrocks/smartpromise": "^4.0.2",
2023-07-03 08:08:04 +00:00
"@pushrocks/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-03 08:08:05 +00:00
}