39 líneas
1.4 KiB
JSON
39 líneas
1.4 KiB
JSON
{
|
|
"name": "ca-archive",
|
|
"version": "3.0.0",
|
|
"description": "Classic Add-ons Archive - WebExtensions Edition",
|
|
"author": "Off JustOff <Off.Just.Off@gmail.com>",
|
|
"license": "MPL-2.0",
|
|
"homepage": "https://github.com/JustOff/ca-archive",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/JustOff/ca-archive.git"
|
|
},
|
|
"scripts": {
|
|
"lint": "web-ext lint --source-dir=.",
|
|
"build:firefox": "web-ext build --source-dir=. --artifacts-dir=./dist --overwrite-dest",
|
|
"build:chrome": "npm run zip",
|
|
"build": "./build.sh",
|
|
"build:sign": "./build.sh --sign",
|
|
"build:sign-firefox": "./build.sh --sign-firefox",
|
|
"build:sign-chrome": "./build.sh --sign-chrome",
|
|
"zip": "zip -r dist/ca-archive-3.0-chrome.zip manifest.json background.js content/ skin/ -x '*.git*' -x '*~' -x '*.md' -x 'install.rdf' -x 'chrome.manifest' -x 'bootstrap.js' -x 'update.xml'",
|
|
"start:firefox": "web-ext run --source-dir=. --firefox-preview",
|
|
"start:chrome": "web-ext run --source-dir=. --target=chromium",
|
|
"keys:generate": "./scripts/generate-keys.sh",
|
|
"sign:firefox": "web-ext sign --source-dir=. --artifacts-dir=./dist --api-key=$AMO_API_KEY --api-secret=$AMO_API_SECRET --channel=unlisted",
|
|
"clean": "rm -rf dist/ web-ext-artifacts/"
|
|
},
|
|
"devDependencies": {
|
|
"web-ext": "^7.9.0"
|
|
},
|
|
"keywords": [
|
|
"firefox",
|
|
"chrome",
|
|
"extensions",
|
|
"addons",
|
|
"archive",
|
|
"webextensions"
|
|
]
|
|
}
|