├── .github └── dependabot.yml ├── .gitignore ├── README.md ├── index.d.ts ├── index.js ├── package.json └── pnpm-lock.yaml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/web-ext-webpack-plugin/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------