mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
3ecb6c4a31
- Migrated to WXT - Migrated to NPM - Added Insert & copy action - Added ESLint
46 lines
750 B
JSON
46 lines
750 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "build -- -b chrome",
|
|
"group":
|
|
{
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"label": "Build: Chromium"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "build -- -b firefox",
|
|
"group": "build",
|
|
"label": "Build: Firefox"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "dev -- -b chrome",
|
|
"group": "test",
|
|
"label": "Dev: Google Chrome"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "dev -- -b firefox",
|
|
"group": "test",
|
|
"label": "Dev: Firefox"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "dev -- -b edge",
|
|
"group": "test",
|
|
"label": "Dev: Microsoft Edge"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "install",
|
|
"label": "Restore dependencies",
|
|
"group": "build"
|
|
}
|
|
]
|
|
}
|