archive-org-link-grabber/package.json
wagesj45 982a16d86e feat(theme): apply new color palette and polish UI
- Add theme variables and restyle popup/options using Primary 3 as background and Primary 2 as surfaces; accents use Primary 1.\n- Move Save to a footer section on the options page; add responsive layout and button variants.\n- Update icon build defaults to use Primary 2 for add-on and Primary 1 for toolbar icons.\n- Add build-and-commit helper to run build, stage generated assets, commit, and optionally push.\n- Add npm scripts: build:commit and build:commit:push.
2025-08-24 00:39:20 -05:00

26 lines
1.2 KiB
JSON

{
"name": "archive-org-link-grabber",
"version": "0.3.4",
"private": true,
"description": "Firefox WebExtension to filter archive.org /download links and copy/send to aria2.",
"scripts": {
"dev": "web-ext run --start-url https://archive.org --source-dir .",
"build:icons": "node scripts/build-icons.js",
"build": "npm run build:icons && web-ext build -o -a dist",
"build:commit": "node scripts/build-and-commit.js",
"build:commit:push": "PUSH=true node scripts/build-and-commit.js --push",
"lint": "echo 'Add ESLint config to enable' && exit 0",
"format": "echo 'Add Prettier config to enable' && exit 0",
"test": "echo 'No tests yet' && exit 0",
"lint:fx": "web-ext lint --source-dir .",
"build:dev": "web-ext build -o -a dist",
"release:prepare:patch": "npm version patch && node scripts/sync-version.js",
"release:prepare:minor": "npm version minor && node scripts/sync-version.js",
"release:prepare:major": "npm version major && node scripts/sync-version.js",
"release:sign": "node scripts/release-sign.js",
"release:push": "node scripts/release-push.js"
},
"devDependencies": {
"web-ext": "^8.3.0"
}
}