mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
18 lines
410 B
JSON
18 lines
410 B
JSON
{
|
|
"name": "webpack-webextension",
|
|
"version": "1.0.0",
|
|
"description": "A minimal example of how to use npm modules from within a WebExtension.",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "webpack"
|
|
},
|
|
"license": "MPL-2.0",
|
|
"devDependencies": {
|
|
"webpack": "^5.74.0",
|
|
"webpack-cli": "^4.10.0"
|
|
},
|
|
"dependencies": {
|
|
"left-pad": "^1.1.1"
|
|
}
|
|
}
|