|
34 | 34 | "commitlint": "commitlint --from=main", |
35 | 35 | "security": "npm audit --production", |
36 | 36 | "lint:prettier": "prettier --cache --list-different .", |
37 | | - "lint:js": "eslint --cache .", |
| 37 | + "lint:code": "eslint --cache .", |
38 | 38 | "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"", |
39 | 39 | "lint:types": "tsc --pretty --noEmit", |
40 | 40 | "lint": "npm-run-all -l -p \"lint:**\"", |
41 | | - "fix:js": "npm run lint:js -- --fix", |
42 | | - "fix:prettier": "npm run lint:prettier -- --write", |
43 | | - "fix": "npm-run-all -l fix:js fix:prettier", |
| 41 | + "fix:code": "npm run lint:code -- --fix", |
| 42 | + "fmt": "npm run lint:prettier -- --write", |
| 43 | + "fix": "npm run fix:code && npm run fmt", |
44 | 44 | "test:only": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js", |
45 | 45 | "test:watch": "npm run test:only -- --watch", |
46 | 46 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", |
|
59 | 59 | "devDependencies": { |
60 | 60 | "@babel/cli": "^7.24.6", |
61 | 61 | "@babel/core": "^7.25.2", |
62 | | - "@babel/eslint-parser": "^7.25.1", |
63 | 62 | "@babel/preset-env": "^7.25.3", |
64 | | - "@commitlint/cli": "^19.3.0", |
65 | | - "@commitlint/config-conventional": "^19.2.2", |
66 | | - "@eslint/js": "^9.32.0", |
67 | | - "@eslint/markdown": "^7.0.0", |
68 | | - "@stylistic/eslint-plugin": "^5.2.2", |
| 63 | + "@commitlint/cli": "^20.3.1", |
| 64 | + "@commitlint/config-conventional": "^20.3.1", |
69 | 65 | "@types/glob-parent": "^5.1.3", |
70 | 66 | "@types/node": "^22.13.5", |
71 | 67 | "@types/normalize-path": "^3.0.2", |
| 68 | + "@types/picomatch": "^4.0.2", |
72 | 69 | "@types/serialize-javascript": "^5.0.4", |
73 | 70 | "babel-jest": "^30.0.0", |
74 | 71 | "cross-env": "^7.0.3", |
75 | | - "cspell": "^8.15.6", |
76 | | - "del": "^6.1.1", |
| 72 | + "cspell": "^9.6.2", |
77 | 73 | "del-cli": "^6.0.0", |
78 | 74 | "eslint": "^9.31.0", |
79 | | - "eslint-config-prettier": "^10.1.8", |
80 | 75 | "eslint-config-webpack": "^4.4.2", |
81 | | - "eslint-plugin-import": "^2.32.0", |
82 | 76 | "eslint-plugin-jest": "^29.0.1", |
83 | | - "eslint-plugin-jsdoc": "^51.4.1", |
84 | | - "eslint-plugin-n": "^17.21.0", |
85 | | - "eslint-plugin-prettier": "^5.5.3", |
86 | | - "eslint-plugin-unicorn": "^60.0.0", |
87 | 77 | "file-loader": "^6.2.0", |
88 | | - "globals": "^16.3.0", |
89 | 78 | "husky": "^9.1.4", |
90 | 79 | "is-gzip": "^2.0.0", |
91 | 80 | "jest": "^30.0.0", |
92 | | - "lint-staged": "^15.2.8", |
| 81 | + "lint-staged": "^16.2.7", |
93 | 82 | "memfs": "^4.11.1", |
94 | 83 | "npm-run-all": "^4.1.5", |
95 | 84 | "prettier": "^3.2.5", |
96 | 85 | "standard-version": "^9.3.1", |
97 | 86 | "typescript": "^5.4.5", |
98 | | - "typescript-eslint": "^8.37.0", |
99 | 87 | "webpack": "^5.91.0" |
100 | 88 | }, |
101 | 89 | "peerDependencies": { |
|
0 commit comments