@pobammer-ts/small-rules 2.7.0 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pobammer-ts/small-rules",
3
- "version": "2.7.0",
3
+ "version": "2.8.0",
4
4
  "description": "Various Oxlint-native rules for linting roblox-ts projects.",
5
5
  "keywords": [
6
6
  "lint",
@@ -39,12 +39,12 @@
39
39
  "arktype": "2.2.3",
40
40
  "ignore": "7.0.6",
41
41
  "minimatch": "10.2.5",
42
- "oxc-parser": "0.139.0",
43
- "oxc-resolver": "11.23.0",
44
- "oxlint-plugin-utilities": "1.1.0"
42
+ "oxc-resolver": "11.24.2",
43
+ "oxlint-plugin-utilities": "1.1.0",
44
+ "yuku-parser": "0.8.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@biomejs/biome": "2.5.3",
47
+ "@biomejs/biome": "2.5.5",
48
48
  "@cliffy/command": "npm:@jsr/cliffy__command@1.2.1",
49
49
  "@commitlint/config-conventional": "21.2.0",
50
50
  "@commitlint/types": "21.2.0",
@@ -56,12 +56,12 @@
56
56
  "@stryker-mutator/vitest-runner": "9.6.1",
57
57
  "@total-typescript/ts-reset": "0.6.1",
58
58
  "@types/bun": "1.3.14",
59
- "@types/node": "25",
59
+ "@types/node": "^26",
60
60
  "@typescript/native-preview": "7.0.0-dev.20260707.2",
61
61
  "@vitest/coverage-v8": "4.1.10",
62
62
  "@vitiate/core": "0.3.1",
63
63
  "@vitiate/fuzzed-data-provider": "0.3.1",
64
- "bumpp": "11.1.0",
64
+ "bumpp": "12.0.0",
65
65
  "changelogithub": "14.0.0",
66
66
  "commitlint": "21.2.1",
67
67
  "confbox": "0.2.4",
@@ -75,17 +75,26 @@
75
75
  "get-tsconfig": "4.14.0",
76
76
  "jiti": "2.7.0",
77
77
  "jscpd": "5.0.12",
78
- "knip": "6.26.0",
79
- "oxfmt": "0.58.0",
80
- "oxlint": "1.73.0",
81
- "oxlint-tsgolint": "0.24.0",
82
- "pncat": "0.12.0",
78
+ "jsonc-parser": "3.3.1",
79
+ "just-diff": "6.0.2",
80
+ "knip": "6.29.0",
81
+ "mutative": "1.3.0",
82
+ "oxfmt": "0.60.0",
83
+ "oxlint": "1.75.0",
84
+ "oxlint-plugin-react-doctor": "0.9.1",
85
+ "oxlint-tsgolint": "7.0.2001",
86
+ "picocolors": "1.1.1",
87
+ "pncat": "0.13.0",
88
+ "react-doctor": "0.9.1",
83
89
  "sfw": "2.0.6",
84
- "skills": "1.5.16",
85
- "tsdown": "0.22.5",
90
+ "skills": "1.5.20",
91
+ "tsdown": "0.22.14",
86
92
  "type-fest": "5.8.0",
93
+ "typescript": "5.9.3",
94
+ "vite-tsconfig-paths": "6.1.1",
87
95
  "vitest": "4.1.10",
88
96
  "vitiate": "0.3.1",
97
+ "yuku-ast": "0.8.0",
89
98
  "zx": "8.8.5"
90
99
  },
91
100
  "peerDependencies": {
@@ -101,6 +110,9 @@
101
110
  "build:local:dev": "node --run build && cp dist/index.js plugins/small-rules.js",
102
111
  "changelogithub": "changelogithub",
103
112
  "commitlint": "commitlint",
113
+ "docs:build": "nr -F docs build",
114
+ "docs:dev": "nr -F docs dev",
115
+ "doctor": "npx react-doctor@latest",
104
116
  "format": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); node --run biome -- check --fix $a && node --run oxfmt -- $a' _",
105
117
  "format:check": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); node --run biome -- check --no-errors-on-unmatched $a && node --run oxfmt -- --no-error-on-unmatched-pattern --check $a' _",
106
118
  "format:safe": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); node --run biome -- check --no-errors-on-unmatched --fix $a && node --run oxfmt -- --no-error-on-unmatched-pattern $a' _",