mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00

* feat: Multiselected tabs support * refactor(folders): Store active tabs as direct references in folders and better handling collapsed items * fix: Refine tab visibility and state management * feat: Add ungroup for multiple selected tabs drag and drop, b=no-bug, c=folders, tabs * fix: Fixed wrong calculation of indentation and other small refactoring, b=no-bug, c=common, folders, tabs * fix: Fixed restoring split views, b=no-bug, c=folders, workspaces * test: Added tests for visible tab, b=no-bug, c=folders, tests, tabs * feat: Folder active tabs are always visible, b=no-bug, c=folders * fix: Fixed duplicate tabs appearing on the tab search list, b=no-bug, c=folders * feat: Added support for active folder unload, b=no-bug, c=folders * fix: first implementation `expandToSelected` * fix: Formatting * fix: Some minor fixes, b=no-bug, c=folders, tabs * fix: Improve collapse visible tab function, b=no-bug, c=folders * test: Added folder level tests, b=no-bug, c=folders, tests --------- Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> Co-authored-by: Mr. M <mr.m@tuta.com>
69 lines
2.2 KiB
JSON
69 lines
2.2 KiB
JSON
{
|
|
"name": "zen-desktop",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"lint-staged": {
|
|
"**/*": ""
|
|
},
|
|
"scripts": {
|
|
"build": "surfer build",
|
|
"build:ui": "surfer build --ui",
|
|
"start": "cd engine && python3 ./mach run --noprofile",
|
|
"import": "npm run ffprefs && surfer import",
|
|
"export": "surfer export",
|
|
"init": "npm run download && npm run import && npm run bootstrap",
|
|
"download": "surfer download",
|
|
"bootstrap": "surfer bootstrap",
|
|
"package": "surfer package",
|
|
"update-ff": "python3 scripts/update_ff.py",
|
|
"update-ff:raw": "surfer update",
|
|
"update-ff:rc": "python3 scripts/update_ff.py --rc",
|
|
"update-ff:l10n": "python3 scripts/update_ff.py --just-l10n",
|
|
"pretty": "prettier . --write && autopep8 -r --in-place scripts/ src/",
|
|
"lint": "npx eslint src/ && prettier . --check && autopep8 --diff scripts/ src/",
|
|
"lint:fix": "npx eslint src/ --fix && npm run pretty",
|
|
"prepare": "husky",
|
|
"reset-ff": "surfer reset",
|
|
"surfer": "surfer",
|
|
"test": "python3 scripts/run_tests.py",
|
|
"test:dbg": "python3 scripts/run_tests.py --jsdebugger --debug-on-failure",
|
|
"ffprefs": "cd tools/ffprefs && cargo run --bin ffprefs -- ../../",
|
|
"lc": "surfer license-check",
|
|
"lc:fix": "surfer license-check --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zen-browser/desktop.git"
|
|
},
|
|
"hooks": {
|
|
"pre-commit": "npm run prepare"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MPL-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/zen-browser/desktop/issues"
|
|
},
|
|
"homepage": "https://github.com/zen-browser/desktop#readme",
|
|
"dependencies": {
|
|
"@zen-browser/surfer": "^1.11.20"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.27.0",
|
|
"@eslint/js": "^9.32.0",
|
|
"@microsoft/eslint-plugin-sdl": "^1.1.0",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-html": "^8.1.3",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-json": "^4.0.1",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"formal-git": "^1.1.5",
|
|
"globals": "^16.3.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.3.0",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-sh": "^0.14.0"
|
|
}
|
|
}
|