mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* 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
16 lines
333 B
JSON
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"
|
|
}
|
|
}
|