mirror of
https://github.com/transmission/transmission.git
synced 2026-02-14 23:19:34 +00:00
* chore: update minor versions * chore: bump to `style-loader@4` major version change * refactor: combine `#mainwin-toolbar:nth-last-child(2)` rule * refactor: cleanup scss definitions Notes: `.single-file` is no longer used in code * chore: bump `esbuild-sass-plugin@3` `esbuild@0.25` * chore: uninstall unused `stylelint-config-standard` In fact, it was never used since added to `package.json`. * chore: bump `stylelint@16` `stylelint-config-sass-guidelines@12` * chore: bump `eslint@9` `eslint-plugin-sonarjs@1` `eslint-plugin-unicorn@61` * chore: enable prettier for whole `transmission-web` package * chore: bump `@primer/stylelint-config@13` * chore: update minor versions * build: remove lint config files from CMake dependency * chore: bump minor versions * chore: bump `eslint-plugin-sonarjs@3` * ci: use `actions/setup-node@v4` to install Node.js So that there's no risk of the OS package manager's Node.js version being too low. Except in Alpine, which does not work with `actions/setup-node@v4`. Ref: https://github.com/actions/setup-node/issues/387 * chore: replace `lodash.isEqual` with `fast-deep-equal` * chore: bump minor versions * chore: re-generate package-lock.json * chore: fix lint errors
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "transmission-web",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/transmission/transmission",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node esbuild.mjs",
|
|
"dev": "DEV=true node esbuild.mjs",
|
|
"generate-buildonly": "node generate-buildonly.js",
|
|
"lint": "run-p --silent lint:eslint lint:stylelint lint:prettier",
|
|
"lint:fix": "run-s lint:eslint:fix lint:stylelint:fix lint:prettier:fix",
|
|
"lint:eslint": "eslint",
|
|
"lint:eslint:fix": "eslint --fix",
|
|
"lint:prettier": "prettier --log-level warn --check .",
|
|
"lint:prettier:fix": "prettier --log-level warn -w .",
|
|
"lint:stylelint": "stylelint assets/css/*scss",
|
|
"lint:stylelint:fix": "stylelint --fix assets/css/*scss"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.7.0",
|
|
"@primer/stylelint-config": "^13.4.0",
|
|
"esbuild": "^0.25.11",
|
|
"esbuild-sass-plugin": "^3.3.1",
|
|
"eslint": "^9.38.0",
|
|
"eslint-plugin-sonarjs": "^3.0.5",
|
|
"eslint-plugin-unicorn": "^61.0.2",
|
|
"globals": "^16.4.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.6.2",
|
|
"sass": "^1.89.2",
|
|
"style-loader": "^4.0.0",
|
|
"stylelint": "^16.25.0",
|
|
"stylelint-config-sass-guidelines": "^12.1.0"
|
|
},
|
|
"dependencies": {
|
|
"fast-deep-equal": "^3.1.3"
|
|
}
|
|
}
|