Files
chrome-extensions-samples/functional-samples/libraries-xhr-in-sw/package.json
patrick kettner d2fd736ac0 Add an example that shows how to polyfill XHR in an extension (#1343)
* add an example that shows how to polyfill XHR in an extension

* updates from feedback

* update based on third party OSS requirements

* update readme links
2024-11-07 04:30:06 -05:00

16 lines
333 B
JSON

{
"name": "XHR polyfill sample",
"private": true,
"version": "1.0.0",
"main": "background.js",
"scripts": {
"build": "rollup -c rollup.config.mjs"
},
"license": "Apache 2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.22.4"
}
}