mirror of
https://github.com/transmission/transmission.git
synced 2026-04-02 00:27:38 +01:00
* chore: bump esbuild@0.27
* chore: bump eslint-plugin-unicorn@63
* chore: bump globals@17
* chore: bump stylelint@17
* chore: pin eslint-plugin-sonarjs@3.0.5
https://github.com/SonarSource/SonarJS/pull/6148 added a dependency that's not declared in the package.json. And of course it's AI slop.
* chore: re-generate package-lock.json
* fix: lint errors
* ci: temporarily enable arm64 NetBSD runner
* Revert "ci: temporarily enable arm64 NetBSD runner"
This reverts commit 39c9be3978.
41 lines
1.3 KiB
JSON
41 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.27.3",
|
|
"esbuild-sass-plugin": "^3.3.1",
|
|
"eslint": "^9.38.0",
|
|
"eslint-plugin-sonarjs": "3.0.5",
|
|
"eslint-plugin-unicorn": "^63.0.0",
|
|
"globals": "^17.3.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.6.2",
|
|
"sass": "^1.89.2",
|
|
"style-loader": "^4.0.0",
|
|
"stylelint": "^17.3.0",
|
|
"stylelint-config-sass-guidelines": "^13.0.0"
|
|
},
|
|
"dependencies": {
|
|
"clusterize.js": "^1.0.0",
|
|
"fast-deep-equal": "^3.1.3"
|
|
}
|
|
}
|