mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-01-19 13:13:22 +08:00
74 lines
3.0 KiB
JSON
74 lines
3.0 KiB
JSON
{
|
|
"name": "azon-seeker",
|
|
"displayName": "Azon Seeker",
|
|
"version": "0.7.0",
|
|
"private": true,
|
|
"description": "Starter modify by honestfox101",
|
|
"scripts": {
|
|
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:prepare dev:web dev:background dev:js",
|
|
"dev-firefox": "npm run clear-firefox && cross-env NODE_ENV=development EXTENSION=firefox run-p dev:prepare dev:web dev:background dev:js",
|
|
"dev:prepare": "esno scripts/prepare.ts",
|
|
"dev:web": "vite",
|
|
"dev:background": "npm run build:background -- --mode development",
|
|
"dev:js": "npm run build:js -- --mode development",
|
|
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:background build:js",
|
|
"build-firefox": "cross-env NODE_ENV=production EXTENSION=firefox run-s clear-firefox build:web build:prepare build:background build:js",
|
|
"build:prepare": "esno scripts/prepare.ts",
|
|
"build:background": "vite build --config vite.config.background.mts",
|
|
"build:web": "vite build",
|
|
"build:js": "vite build --config vite.config.content.mts",
|
|
"pack:7z": "rimraf --glob ./build/*.7z && 7z a ./build/extension.7z extension/* && 7z a ./build/extension-firefox.7z extension-firefox/*",
|
|
"start:chromium": "web-ext run --source-dir ./extension --target=chromium --chromium-binary 'C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe'",
|
|
"start:firefox": "web-ext run --source-dir ./extension-firefox --target=firefox-desktop",
|
|
"clear": "rimraf --glob extension/dist extension/manifest.json extension.* ",
|
|
"clear-firefox": "rimraf --glob extension-firefox/dist extension-firefox/manifest.json extension.*",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify/json": "^2.2.359",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^22.16.4",
|
|
"@types/webextension-polyfill": "^0.12.3",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
"@vueuse/core": "^13.5.0",
|
|
"@zumer/snapdom": "^1.9.5",
|
|
"alova": "^3.3.4",
|
|
"chokidar": "^4.0.3",
|
|
"cross-env": "^7.0.3",
|
|
"dayjs": "^1.11.13",
|
|
"emittery": "^1.2.0",
|
|
"esno": "^4.8.0",
|
|
"exceljs": "^4.4.0",
|
|
"fs-extra": "^11.3.0",
|
|
"github-markdown-css": "^5.8.1",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^26.1.0",
|
|
"kolorist": "^1.8.0",
|
|
"lint-staged": "^16.1.2",
|
|
"markdown-it-anchor": "^9.2.0",
|
|
"markdown-it-toc-done-right": "^4.2.0",
|
|
"naive-ui": "^2.42.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "3.6.2",
|
|
"rimraf": "^6.0.1",
|
|
"sass-embedded": "^1.89.2",
|
|
"typescript": "^5.8.3",
|
|
"unplugin-auto-import": "^19.3.0",
|
|
"unplugin-icons": "^22.1.0",
|
|
"unplugin-vue-components": "^28.8.0",
|
|
"unplugin-vue-markdown": "^29.1.0",
|
|
"vite": "^7.0.4",
|
|
"vue": "^3.5.17",
|
|
"vue-demi": "^0.14.10",
|
|
"vue-router": "^4.5.1",
|
|
"web-ext": "^8.8.0",
|
|
"webext-bridge": "link:webext-bridge",
|
|
"webextension-polyfill": "^0.12.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|