{ "name": "queue", "description": "A WebExtension for queueing links.", "license": "AGPL-3.0-or-later", "author": "Holllo ", "repository": { "type": "git", "url": "https://github.com/Holllo/queue" }, "private": true, "scripts": { "start": "vite build -m development --watch", "start:chromium": "VITE_BROWSER=chromium pnpm start", "clean": "trash build web-ext-artifacts", "build": "pnpm clean && pnpm build:chromium && pnpm build:firefox && pnpm zip-source", "build:chromium": "VITE_BROWSER=chromium vite build && web-ext build -n queue-chromium-{version}.zip -s build/chromium", "build:firefox": "VITE_BROWSER=firefox vite build && web-ext build -n queue-firefox-{version}.zip -s build/firefox", "zip-source": "git archive --format zip --output web-ext-artifacts/queue-source.zip HEAD", "test": "xo && stylelint 'source/**/*.scss' && tsc && c8 ava" }, "dependencies": { "@holllo/gram": "^0.1.0", "htm": "^3.1.0", "migration-helper": "^0.1.2", "modern-normalize": "^1.1.0", "preact": "^10.6.6", "webextension-polyfill": "^0.8.0" }, "devDependencies": { "@preact/preset-vite": "^2.1.7", "@types/webextension-polyfill": "^0.8.2", "ava": "^4.0.1", "c8": "^7.11.0", "postcss": "^8.4.7", "sass": "^1.49.9", "stylelint": "^14.5.3", "stylelint-config-standard-scss": "^3.0.0", "trash-cli": "^5.0.0", "ts-node": "^10.6.0", "typescript": "^4.5.5", "vite": "^2.8.4", "vite-plugin-web-extension": "^1.1.2", "web-ext": "^6.7.0", "xo": "^0.48.0" }, "ava": { "extensions": [ "ts" ], "files": [ "tests/**/*.test.ts" ], "require": [ "ts-node/register" ], "snapshotDir": "tests/snapshots" }, "c8": { "include": [ "source", "tests" ], "reportDir": "coverage", "reporter": [ "text", "html" ] }, "xo": { "overrides": [ { "files": "tests/**/*.test.ts", "rules": { "@typescript-eslint/triple-slash-reference": "off", "import/extensions": "off", "no-await-in-loop": "off" } } ], "prettier": true, "space": true } }