mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-01-19 21:23:30 +08:00
74 lines
2.7 KiB
JSON
74 lines
2.7 KiB
JSON
{
|
|
"name": "azon-seeker",
|
|
"displayName": "Azon Seeker",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Starter modify by honestfox101",
|
|
"scripts": {
|
|
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
|
|
"dev-firefox": "npm run clear && cross-env NODE_ENV=development EXTENSION=firefox run-p dev:*",
|
|
"dev:prepare": "esno scripts/prepare.ts",
|
|
"dev:background": "npm run build:background -- --mode development",
|
|
"dev:web": "vite",
|
|
"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: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": "cross-env NODE_ENV=production run-p pack:*",
|
|
"pack:zip": "rimraf extension.zip && jszip-cli add extension/* -o ./extension.zip",
|
|
"pack:crx": "crx pack extension -o ./extension.crx",
|
|
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
|
|
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
|
|
"start:firefox": "web-ext run --source-dir ./extension --target=firefox-desktop",
|
|
"clear": "rimraf --glob extension/dist extension/manifest.json extension.*",
|
|
"test": "vitest test",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@ffflorian/jszip-cli": "^3.8.2",
|
|
"@iconify/json": "^2.2.293",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^22.10.5",
|
|
"@types/webextension-polyfill": "^0.12.1",
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vueuse/core": "^12.3.0",
|
|
"chokidar": "^4.0.3",
|
|
"cross-env": "^7.0.3",
|
|
"crx": "^5.0.1",
|
|
"dayjs": "^1.11.13",
|
|
"emittery": "^1.1.0",
|
|
"esno": "^4.8.0",
|
|
"fs-extra": "^11.2.0",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^26.0.0",
|
|
"kolorist": "^1.8.0",
|
|
"lint-staged": "^15.5.0",
|
|
"naive-ui": "^2.41.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "3.5.3",
|
|
"rimraf": "^6.0.1",
|
|
"sass-embedded": "^1.86.2",
|
|
"typescript": "^5.8.2",
|
|
"unplugin-auto-import": "^19.1.2",
|
|
"unplugin-icons": "^22.1.0",
|
|
"unplugin-vue-components": "^28.4.1",
|
|
"vite": "^6.2.4",
|
|
"vitest": "^3.1.1",
|
|
"vue": "^3.5.13",
|
|
"vue-demi": "^0.14.10",
|
|
"web-ext": "^8.5.0",
|
|
"webext-bridge": "^6.0.1",
|
|
"webextension-polyfill": "^0.12.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
},
|
|
"dependencies": {
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
}
|
|
}
|