skyltmax_config 0.0.6 → 0.0.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6a8007ef02d8dc6672b4d770ae1a539df59f4191f7ded5dbebd444f91f53b00
4
- data.tar.gz: 6ceb88fb0b3b6f1c3f1dcf59b58d0ea237422e8706a4f811537d31c2f63fba20
3
+ metadata.gz: 8d0b5e4005f25b7a15134752efae54631a8b91a41f35ebfa13d55f6696322b0b
4
+ data.tar.gz: '0393d88c7e9a2ed3220041a0e3b3c92624851713ee50e70367dbddae84198a1c'
5
5
  SHA512:
6
- metadata.gz: a656607ad44b3c0c803fcfdf8ce887d9183acf2fea52e15e6c4ae5da2ededd4323e69bad51362a3ebff3d516aae2025cfe9c01c9a6df60b94f95b4d5a66197a9
7
- data.tar.gz: 8c4ce36089f6a36666fbae8c139bc0f601d20fb9ca3b0a76f801b98c7ae9db9c5f8b085d606e3d0a42f5565df829a3e406589ff7f08d0196c79bffae262dfb2e
6
+ metadata.gz: f13d84be69e038732078a9aa5fd8b0f8f0e87f0a1d59b3af42a3593a06b8cc2d2b2ab18257da6db31144b65aff80e3e044820024c842d7f4df7c2300c571086c
7
+ data.tar.gz: dffca3d7f02fc0a60cb3619612376e1aac7e71318f510fc81a27c525f9aadceca14efd03273106c8d268f7d3b03d29f2af8efd756d854ab0319cb4dc0840a703
data/AGENTS.md CHANGED
@@ -501,9 +501,30 @@ This package uses a dual-publishing approach:
501
501
 
502
502
  ### Dependency Management
503
503
 
504
- This package bundles all required tooling as direct dependencies, making it the **single source of truth** for versions:
504
+ This package uses **peer dependencies** to provide all required tooling while ensuring proper editor/IDE discovery:
505
505
 
506
- **Dependencies (all tooling bundled):**
506
+ **Why Peer Dependencies?**
507
+
508
+ 1. **Editor Discovery:** Tools like VSCode, WebStorm, and others look for `prettier`, `eslint`, and `typescript` in the
509
+ project's root `node_modules`. When bundled as regular dependencies, they end up in
510
+ `node_modules/@signmax/config/node_modules`, which editors cannot find.
511
+
512
+ 2. **Automatic Installation:** Modern package managers with `autoInstallPeers` enabled (pnpm's default, npm 7+
513
+ configurable) automatically install peer dependencies, so users get a "single install" experience.
514
+
515
+ 3. **Hoisting:** Peer dependencies are hoisted to the root `node_modules`, making them discoverable by all tools and
516
+ editors.
517
+
518
+ 4. **Version Control:** This package controls the **exact** versions (no semver ranges) to ensure all consuming projects
519
+ get identical tool versions for reproducible linting/formatting/type-checking.
520
+
521
+ **Structure:**
522
+
523
+ - **peerDependencies:** All ESLint, Prettier, TypeScript tools and plugins with **exact versions** (no semver ranges)
524
+ - **devDependencies:** Only dev-specific tools (`@types/react`, `npm-run-all`, `react`) - peer dependencies are
525
+ auto-installed by pnpm for local development
526
+
527
+ **All tooling (declared as peer dependencies with exact versions):**
507
528
 
508
529
  - **ESLint & Core:** `eslint`, `@eslint/js`, `typescript-eslint`
509
530
  - **TypeScript ESLint:** `@typescript-eslint/eslint-plugin`, `@typescript-eslint/parser`, `@typescript-eslint/utils`
@@ -513,12 +534,18 @@ This package bundles all required tooling as direct dependencies, making it the
513
534
  - **Testing:** `@vitest/eslint-plugin`, `eslint-plugin-testing-library`, `eslint-plugin-jest-dom`
514
535
  - **Utilities:** `globals`
515
536
 
516
- **Why this approach?**
537
+ **Benefits:**
538
+
539
+ **Benefits:**
517
540
 
518
541
  - ✅ **Version control:** Consuming projects get consistent, tested versions
519
- - ✅ **Simplified setup:** Single `npm install @signmax/config` gets everything
542
+ - ✅ **Simplified setup:** Single `npm install @signmax/config` gets everything (with autoInstallPeers enabled)
520
543
  - ✅ **No version conflicts:** This package manages compatibility between tools
521
544
  - ✅ **Updates centralized:** Bump versions here, all projects benefit
545
+ - ✅ **Editor compatibility:** Tools are hoisted to root `node_modules/` for VSCode, WebStorm, etc.
546
+
547
+ **Note:** pnpm enables `autoInstallPeers` by default. For npm 7+, you may need to enable it with
548
+ `npm config set auto-install-peers true` or install peers manually if warnings appear.
522
549
 
523
550
  **DevDependencies (development only):**
524
551
 
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ### Unreleased
4
4
 
5
+ ### [0.0.8] - 2025-11-05
6
+
7
+ - fix: Move dependencies to peer dependencies.
8
+
9
+ ### [0.0.7] - 2025-11-05
10
+
11
+ - feat: Make prettier tailwind plugin optional.
12
+
5
13
  ### [0.0.6] - 2025-11-05
6
14
 
7
15
  - fix: Add missing eslint-config-prettier dependency.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skyltmax_config (0.0.6)
4
+ skyltmax_config (0.0.8)
5
5
  rubocop (>= 1.81.0, < 2)
6
6
  rubocop-performance (>= 1.26.0, < 2)
7
7
  rubocop-rails (>= 2.33.0, < 3)
data/README.md CHANGED
@@ -16,9 +16,6 @@ npm install --save-dev @signmax/config
16
16
  pnpm add -D @signmax/config
17
17
  ```
18
18
 
19
- All required tools (ESLint, Prettier, TypeScript, and all plugins) are bundled as dependencies. This package is the
20
- single source of truth for all tooling versions—no need to install peer dependencies separately.
21
-
22
19
  ### Ruby
23
20
 
24
21
  Include the gem in your `Gemfile`:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SkyltmaxConfig
4
- VERSION = "0.0.6"
4
+ VERSION = "0.0.8"
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signmax/config",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,36 +42,37 @@
42
42
  "LICENSE"
43
43
  ],
44
44
  "engines": {
45
- "node": ">=18.0.0"
45
+ "node": ">=20.0.0"
46
46
  },
47
47
  "scripts": {
48
48
  "format": "prettier . --write",
49
49
  "lint": "eslint .",
50
50
  "typecheck": "tsc",
51
- "validate": "run-p -l format lint typecheck"
51
+ "validate": "run-p -l format lint typecheck",
52
+ "bump": "npx npm-check-updates --dep peer --target latest -i"
52
53
  },
53
- "dependencies": {
54
- "@eslint/js": "^9.33.0",
55
- "@total-typescript/ts-reset": "^0.6.1",
56
- "@typescript-eslint/eslint-plugin": "^8.39.1",
57
- "@typescript-eslint/parser": "^8.39.1",
58
- "@typescript-eslint/utils": "^8.39.1",
59
- "@vitest/eslint-plugin": "^1.3.4",
60
- "eslint": "^9.33.0",
61
- "eslint-config-prettier": "^10.1.8",
62
- "eslint-plugin-import-x": "^4.16.1",
63
- "eslint-plugin-jest-dom": "^5.5.0",
64
- "eslint-plugin-jsx-a11y": "^6.10.2",
65
- "eslint-plugin-prettier": "^5.5.4",
66
- "eslint-plugin-react": "^7.37.5",
67
- "eslint-plugin-react-hooks": "^5.2.0",
68
- "eslint-plugin-testing-library": "^7.6.6",
69
- "globals": "^16.3.0",
70
- "prettier": "^3.6.2",
71
- "prettier-plugin-tailwindcss": "^0.6.14",
72
- "tslib": "^2.8.1",
73
- "typescript": "^5.9.2",
74
- "typescript-eslint": "^8.39.1"
54
+ "peerDependencies": {
55
+ "@eslint/js": "9.39.1",
56
+ "@total-typescript/ts-reset": "0.6.1",
57
+ "@typescript-eslint/eslint-plugin": "8.46.3",
58
+ "@typescript-eslint/parser": "8.46.3",
59
+ "@typescript-eslint/utils": "8.46.3",
60
+ "@vitest/eslint-plugin": "1.4.1",
61
+ "eslint": "9.39.1",
62
+ "eslint-config-prettier": "10.1.8",
63
+ "eslint-plugin-import-x": "4.16.1",
64
+ "eslint-plugin-jest-dom": "5.5.0",
65
+ "eslint-plugin-jsx-a11y": "6.10.2",
66
+ "eslint-plugin-prettier": "5.5.4",
67
+ "eslint-plugin-react": "7.37.5",
68
+ "eslint-plugin-react-hooks": "7.0.1",
69
+ "eslint-plugin-testing-library": "7.13.3",
70
+ "globals": "16.5.0",
71
+ "prettier": "3.6.2",
72
+ "prettier-plugin-tailwindcss": "0.7.1",
73
+ "tslib": "2.8.1",
74
+ "typescript": "5.9.3",
75
+ "typescript-eslint": "8.46.3"
75
76
  },
76
77
  "devDependencies": {
77
78
  "@types/react": "^18.3.0",
data/pnpm-lock.yaml CHANGED
@@ -8,67 +8,67 @@ importers:
8
8
  .:
9
9
  dependencies:
10
10
  "@eslint/js":
11
- specifier: ^9.33.0
11
+ specifier: 9.39.1
12
12
  version: 9.39.1
13
13
  "@total-typescript/ts-reset":
14
- specifier: ^0.6.1
14
+ specifier: 0.6.1
15
15
  version: 0.6.1
16
16
  "@typescript-eslint/eslint-plugin":
17
- specifier: ^8.39.1
17
+ specifier: 8.46.3
18
18
  version: 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)
19
19
  "@typescript-eslint/parser":
20
- specifier: ^8.39.1
20
+ specifier: 8.46.3
21
21
  version: 8.46.3(eslint@9.39.1)(typescript@5.9.3)
22
22
  "@typescript-eslint/utils":
23
- specifier: ^8.39.1
23
+ specifier: 8.46.3
24
24
  version: 8.46.3(eslint@9.39.1)(typescript@5.9.3)
25
25
  "@vitest/eslint-plugin":
26
- specifier: ^1.3.4
27
- version: 1.4.0(eslint@9.39.1)(typescript@5.9.3)
26
+ specifier: 1.4.1
27
+ version: 1.4.1(eslint@9.39.1)(typescript@5.9.3)
28
28
  eslint:
29
- specifier: ^9.33.0
29
+ specifier: 9.39.1
30
30
  version: 9.39.1
31
31
  eslint-config-prettier:
32
- specifier: ^10.1.8
32
+ specifier: 10.1.8
33
33
  version: 10.1.8(eslint@9.39.1)
34
34
  eslint-plugin-import-x:
35
- specifier: ^4.16.1
35
+ specifier: 4.16.1
36
36
  version: 4.16.1(@typescript-eslint/utils@8.46.3(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)
37
37
  eslint-plugin-jest-dom:
38
- specifier: ^5.5.0
38
+ specifier: 5.5.0
39
39
  version: 5.5.0(eslint@9.39.1)
40
40
  eslint-plugin-jsx-a11y:
41
- specifier: ^6.10.2
41
+ specifier: 6.10.2
42
42
  version: 6.10.2(eslint@9.39.1)
43
43
  eslint-plugin-prettier:
44
- specifier: ^5.5.4
44
+ specifier: 5.5.4
45
45
  version: 5.5.4(eslint-config-prettier@10.1.8(eslint@9.39.1))(eslint@9.39.1)(prettier@3.6.2)
46
46
  eslint-plugin-react:
47
- specifier: ^7.37.5
47
+ specifier: 7.37.5
48
48
  version: 7.37.5(eslint@9.39.1)
49
49
  eslint-plugin-react-hooks:
50
- specifier: ^5.2.0
51
- version: 5.2.0(eslint@9.39.1)
50
+ specifier: 7.0.1
51
+ version: 7.0.1(eslint@9.39.1)
52
52
  eslint-plugin-testing-library:
53
- specifier: ^7.6.6
53
+ specifier: 7.13.3
54
54
  version: 7.13.3(eslint@9.39.1)(typescript@5.9.3)
55
55
  globals:
56
- specifier: ^16.3.0
56
+ specifier: 16.5.0
57
57
  version: 16.5.0
58
58
  prettier:
59
- specifier: ^3.6.2
59
+ specifier: 3.6.2
60
60
  version: 3.6.2
61
61
  prettier-plugin-tailwindcss:
62
- specifier: ^0.6.14
63
- version: 0.6.14(prettier@3.6.2)
62
+ specifier: 0.7.1
63
+ version: 0.7.1(prettier@3.6.2)
64
64
  tslib:
65
- specifier: ^2.8.1
65
+ specifier: 2.8.1
66
66
  version: 2.8.1
67
67
  typescript:
68
- specifier: ^5.9.2
68
+ specifier: 5.9.3
69
69
  version: 5.9.3
70
70
  typescript-eslint:
71
- specifier: ^8.39.1
71
+ specifier: 8.46.3
72
72
  version: 8.46.3(eslint@9.39.1)(typescript@5.9.3)
73
73
  devDependencies:
74
74
  "@types/react":
@@ -82,11 +82,94 @@ importers:
82
82
  version: 18.3.1
83
83
 
84
84
  packages:
85
+ "@babel/code-frame@7.27.1":
86
+ resolution:
87
+ { integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== }
88
+ engines: { node: ">=6.9.0" }
89
+
90
+ "@babel/compat-data@7.28.5":
91
+ resolution:
92
+ { integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA== }
93
+ engines: { node: ">=6.9.0" }
94
+
95
+ "@babel/core@7.28.5":
96
+ resolution:
97
+ { integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw== }
98
+ engines: { node: ">=6.9.0" }
99
+
100
+ "@babel/generator@7.28.5":
101
+ resolution:
102
+ { integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ== }
103
+ engines: { node: ">=6.9.0" }
104
+
105
+ "@babel/helper-compilation-targets@7.27.2":
106
+ resolution:
107
+ { integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ== }
108
+ engines: { node: ">=6.9.0" }
109
+
110
+ "@babel/helper-globals@7.28.0":
111
+ resolution:
112
+ { integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw== }
113
+ engines: { node: ">=6.9.0" }
114
+
115
+ "@babel/helper-module-imports@7.27.1":
116
+ resolution:
117
+ { integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w== }
118
+ engines: { node: ">=6.9.0" }
119
+
120
+ "@babel/helper-module-transforms@7.28.3":
121
+ resolution:
122
+ { integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw== }
123
+ engines: { node: ">=6.9.0" }
124
+ peerDependencies:
125
+ "@babel/core": ^7.0.0
126
+
127
+ "@babel/helper-string-parser@7.27.1":
128
+ resolution:
129
+ { integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== }
130
+ engines: { node: ">=6.9.0" }
131
+
132
+ "@babel/helper-validator-identifier@7.28.5":
133
+ resolution:
134
+ { integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== }
135
+ engines: { node: ">=6.9.0" }
136
+
137
+ "@babel/helper-validator-option@7.27.1":
138
+ resolution:
139
+ { integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== }
140
+ engines: { node: ">=6.9.0" }
141
+
142
+ "@babel/helpers@7.28.4":
143
+ resolution:
144
+ { integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w== }
145
+ engines: { node: ">=6.9.0" }
146
+
147
+ "@babel/parser@7.28.5":
148
+ resolution:
149
+ { integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ== }
150
+ engines: { node: ">=6.0.0" }
151
+ hasBin: true
152
+
85
153
  "@babel/runtime@7.28.4":
86
154
  resolution:
87
155
  { integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ== }
88
156
  engines: { node: ">=6.9.0" }
89
157
 
158
+ "@babel/template@7.27.2":
159
+ resolution:
160
+ { integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== }
161
+ engines: { node: ">=6.9.0" }
162
+
163
+ "@babel/traverse@7.28.5":
164
+ resolution:
165
+ { integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ== }
166
+ engines: { node: ">=6.9.0" }
167
+
168
+ "@babel/types@7.28.5":
169
+ resolution:
170
+ { integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA== }
171
+ engines: { node: ">=6.9.0" }
172
+
90
173
  "@emnapi/core@1.7.0":
91
174
  resolution:
92
175
  { integrity: sha512-pJdKGq/1iquWYtv1RRSljZklxHCOCAJFJrImO5ZLKPJVJlVUcs8yFwNQlqS0Lo8xT1VAXXTCZocF9n26FWEKsw== }
@@ -176,6 +259,27 @@ packages:
176
259
  { integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA== }
177
260
  engines: { node: 20 || >=22 }
178
261
 
262
+ "@jridgewell/gen-mapping@0.3.13":
263
+ resolution:
264
+ { integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== }
265
+
266
+ "@jridgewell/remapping@2.3.5":
267
+ resolution:
268
+ { integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ== }
269
+
270
+ "@jridgewell/resolve-uri@3.1.2":
271
+ resolution:
272
+ { integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== }
273
+ engines: { node: ">=6.0.0" }
274
+
275
+ "@jridgewell/sourcemap-codec@1.5.5":
276
+ resolution:
277
+ { integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== }
278
+
279
+ "@jridgewell/trace-mapping@0.3.31":
280
+ resolution:
281
+ { integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== }
282
+
179
283
  "@napi-rs/wasm-runtime@0.2.12":
180
284
  resolution:
181
285
  { integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ== }
@@ -407,9 +511,9 @@ packages:
407
511
  cpu: [x64]
408
512
  os: [win32]
409
513
 
410
- "@vitest/eslint-plugin@1.4.0":
514
+ "@vitest/eslint-plugin@1.4.1":
411
515
  resolution:
412
- { integrity: sha512-TMzJ0Vqdsc71stblzI0ZdqSnt6Bp4mJ+amD3Hv3qhKK82hBUnznYfnLwA80gdGfe5V24ysndMOoSGrol6fyvbA== }
516
+ { integrity: sha512-eBMCLeUhKvQxH7nPihmLUJUWXxqKovVFEmxbGKqkY/aN6hTAXGiRid8traRUOvgr82NJFJL3KPpE19fElOR7bg== }
413
517
  engines: { node: ">=18" }
414
518
  peerDependencies:
415
519
  eslint: ">=8.57.0"
@@ -519,6 +623,11 @@ packages:
519
623
  resolution:
520
624
  { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== }
521
625
 
626
+ baseline-browser-mapping@2.8.25:
627
+ resolution:
628
+ { integrity: sha512-2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA== }
629
+ hasBin: true
630
+
522
631
  brace-expansion@1.1.12:
523
632
  resolution:
524
633
  { integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== }
@@ -532,6 +641,12 @@ packages:
532
641
  { integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== }
533
642
  engines: { node: ">=8" }
534
643
 
644
+ browserslist@4.27.0:
645
+ resolution:
646
+ { integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw== }
647
+ engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
648
+ hasBin: true
649
+
535
650
  call-bind-apply-helpers@1.0.2:
536
651
  resolution:
537
652
  { integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== }
@@ -552,6 +667,10 @@ packages:
552
667
  { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== }
553
668
  engines: { node: ">=6" }
554
669
 
670
+ caniuse-lite@1.0.30001753:
671
+ resolution:
672
+ { integrity: sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw== }
673
+
555
674
  chalk@2.4.2:
556
675
  resolution:
557
676
  { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== }
@@ -588,6 +707,10 @@ packages:
588
707
  resolution:
589
708
  { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== }
590
709
 
710
+ convert-source-map@2.0.0:
711
+ resolution:
712
+ { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== }
713
+
591
714
  cross-spawn@6.0.6:
592
715
  resolution:
593
716
  { integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== }
@@ -655,6 +778,10 @@ packages:
655
778
  { integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== }
656
779
  engines: { node: ">= 0.4" }
657
780
 
781
+ electron-to-chromium@1.5.245:
782
+ resolution:
783
+ { integrity: sha512-rdmGfW47ZhL/oWEJAY4qxRtdly2B98ooTJ0pdEI4jhVLZ6tNf8fPtov2wS1IRKwFJT92le3x4Knxiwzl7cPPpQ== }
784
+
658
785
  emoji-regex@9.2.2:
659
786
  resolution:
660
787
  { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== }
@@ -703,6 +830,11 @@ packages:
703
830
  { integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== }
704
831
  engines: { node: ">= 0.4" }
705
832
 
833
+ escalade@3.2.0:
834
+ resolution:
835
+ { integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== }
836
+ engines: { node: ">=6" }
837
+
706
838
  escape-string-regexp@1.0.5:
707
839
  resolution:
708
840
  { integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== }
@@ -777,10 +909,10 @@ packages:
777
909
  eslint-config-prettier:
778
910
  optional: true
779
911
 
780
- eslint-plugin-react-hooks@5.2.0:
912
+ eslint-plugin-react-hooks@7.0.1:
781
913
  resolution:
782
- { integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg== }
783
- engines: { node: ">=10" }
914
+ { integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA== }
915
+ engines: { node: ">=18" }
784
916
  peerDependencies:
785
917
  eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
786
918
 
@@ -921,6 +1053,11 @@ packages:
921
1053
  { integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g== }
922
1054
  engines: { node: ">= 0.4" }
923
1055
 
1056
+ gensync@1.0.0-beta.2:
1057
+ resolution:
1058
+ { integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== }
1059
+ engines: { node: ">=6.9.0" }
1060
+
924
1061
  get-intrinsic@1.3.0:
925
1062
  resolution:
926
1063
  { integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== }
@@ -1017,6 +1154,14 @@ packages:
1017
1154
  { integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== }
1018
1155
  engines: { node: ">= 0.4" }
1019
1156
 
1157
+ hermes-estree@0.25.1:
1158
+ resolution:
1159
+ { integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw== }
1160
+
1161
+ hermes-parser@0.25.1:
1162
+ resolution:
1163
+ { integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA== }
1164
+
1020
1165
  hosted-git-info@2.8.9:
1021
1166
  resolution:
1022
1167
  { integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== }
@@ -1197,6 +1342,12 @@ packages:
1197
1342
  { integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== }
1198
1343
  hasBin: true
1199
1344
 
1345
+ jsesc@3.1.0:
1346
+ resolution:
1347
+ { integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== }
1348
+ engines: { node: ">=6" }
1349
+ hasBin: true
1350
+
1200
1351
  json-buffer@3.0.1:
1201
1352
  resolution:
1202
1353
  { integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== }
@@ -1213,6 +1364,12 @@ packages:
1213
1364
  resolution:
1214
1365
  { integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== }
1215
1366
 
1367
+ json5@2.2.3:
1368
+ resolution:
1369
+ { integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== }
1370
+ engines: { node: ">=6" }
1371
+ hasBin: true
1372
+
1216
1373
  jsx-ast-utils@3.3.5:
1217
1374
  resolution:
1218
1375
  { integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== }
@@ -1255,6 +1412,10 @@ packages:
1255
1412
  { integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== }
1256
1413
  hasBin: true
1257
1414
 
1415
+ lru-cache@5.1.1:
1416
+ resolution:
1417
+ { integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== }
1418
+
1258
1419
  math-intrinsics@1.1.0:
1259
1420
  resolution:
1260
1421
  { integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== }
@@ -1307,6 +1468,10 @@ packages:
1307
1468
  resolution:
1308
1469
  { integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== }
1309
1470
 
1471
+ node-releases@2.0.27:
1472
+ resolution:
1473
+ { integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA== }
1474
+
1310
1475
  normalize-package-data@2.5.0:
1311
1476
  resolution:
1312
1477
  { integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== }
@@ -1406,6 +1571,10 @@ packages:
1406
1571
  { integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== }
1407
1572
  engines: { node: ">=4" }
1408
1573
 
1574
+ picocolors@1.1.1:
1575
+ resolution:
1576
+ { integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== }
1577
+
1409
1578
  picomatch@2.3.1:
1410
1579
  resolution:
1411
1580
  { integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== }
@@ -1437,10 +1606,10 @@ packages:
1437
1606
  { integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== }
1438
1607
  engines: { node: ">=6.0.0" }
1439
1608
 
1440
- prettier-plugin-tailwindcss@0.6.14:
1609
+ prettier-plugin-tailwindcss@0.7.1:
1441
1610
  resolution:
1442
- { integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg== }
1443
- engines: { node: ">=14.21.3" }
1611
+ { integrity: sha512-Bzv1LZcuiR1Sk02iJTS1QzlFNp/o5l2p3xkopwOrbPmtMeh3fK9rVW5M3neBQzHq+kGKj/4LGQMTNcTH4NGPtQ== }
1612
+ engines: { node: ">=20.19" }
1444
1613
  peerDependencies:
1445
1614
  "@ianvs/prettier-plugin-sort-imports": "*"
1446
1615
  "@prettier/plugin-hermes": "*"
@@ -1452,14 +1621,12 @@ packages:
1452
1621
  prettier: ^3.0
1453
1622
  prettier-plugin-astro: "*"
1454
1623
  prettier-plugin-css-order: "*"
1455
- prettier-plugin-import-sort: "*"
1456
1624
  prettier-plugin-jsdoc: "*"
1457
1625
  prettier-plugin-marko: "*"
1458
1626
  prettier-plugin-multiline-arrays: "*"
1459
1627
  prettier-plugin-organize-attributes: "*"
1460
1628
  prettier-plugin-organize-imports: "*"
1461
1629
  prettier-plugin-sort-imports: "*"
1462
- prettier-plugin-style-order: "*"
1463
1630
  prettier-plugin-svelte: "*"
1464
1631
  peerDependenciesMeta:
1465
1632
  "@ianvs/prettier-plugin-sort-imports":
@@ -1480,8 +1647,6 @@ packages:
1480
1647
  optional: true
1481
1648
  prettier-plugin-css-order:
1482
1649
  optional: true
1483
- prettier-plugin-import-sort:
1484
- optional: true
1485
1650
  prettier-plugin-jsdoc:
1486
1651
  optional: true
1487
1652
  prettier-plugin-marko:
@@ -1494,8 +1659,6 @@ packages:
1494
1659
  optional: true
1495
1660
  prettier-plugin-sort-imports:
1496
1661
  optional: true
1497
- prettier-plugin-style-order:
1498
- optional: true
1499
1662
  prettier-plugin-svelte:
1500
1663
  optional: true
1501
1664
 
@@ -1821,6 +1984,13 @@ packages:
1821
1984
  resolution:
1822
1985
  { integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg== }
1823
1986
 
1987
+ update-browserslist-db@1.1.4:
1988
+ resolution:
1989
+ { integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A== }
1990
+ hasBin: true
1991
+ peerDependencies:
1992
+ browserslist: ">= 4.21.0"
1993
+
1824
1994
  uri-js@4.4.1:
1825
1995
  resolution:
1826
1996
  { integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== }
@@ -1865,14 +2035,129 @@ packages:
1865
2035
  { integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== }
1866
2036
  engines: { node: ">=0.10.0" }
1867
2037
 
2038
+ yallist@3.1.1:
2039
+ resolution:
2040
+ { integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== }
2041
+
1868
2042
  yocto-queue@0.1.0:
1869
2043
  resolution:
1870
2044
  { integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== }
1871
2045
  engines: { node: ">=10" }
1872
2046
 
2047
+ zod-validation-error@4.0.2:
2048
+ resolution:
2049
+ { integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ== }
2050
+ engines: { node: ">=18.0.0" }
2051
+ peerDependencies:
2052
+ zod: ^3.25.0 || ^4.0.0
2053
+
2054
+ zod@4.1.12:
2055
+ resolution:
2056
+ { integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ== }
2057
+
1873
2058
  snapshots:
2059
+ "@babel/code-frame@7.27.1":
2060
+ dependencies:
2061
+ "@babel/helper-validator-identifier": 7.28.5
2062
+ js-tokens: 4.0.0
2063
+ picocolors: 1.1.1
2064
+
2065
+ "@babel/compat-data@7.28.5": {}
2066
+
2067
+ "@babel/core@7.28.5":
2068
+ dependencies:
2069
+ "@babel/code-frame": 7.27.1
2070
+ "@babel/generator": 7.28.5
2071
+ "@babel/helper-compilation-targets": 7.27.2
2072
+ "@babel/helper-module-transforms": 7.28.3(@babel/core@7.28.5)
2073
+ "@babel/helpers": 7.28.4
2074
+ "@babel/parser": 7.28.5
2075
+ "@babel/template": 7.27.2
2076
+ "@babel/traverse": 7.28.5
2077
+ "@babel/types": 7.28.5
2078
+ "@jridgewell/remapping": 2.3.5
2079
+ convert-source-map: 2.0.0
2080
+ debug: 4.4.3
2081
+ gensync: 1.0.0-beta.2
2082
+ json5: 2.2.3
2083
+ semver: 6.3.1
2084
+ transitivePeerDependencies:
2085
+ - supports-color
2086
+
2087
+ "@babel/generator@7.28.5":
2088
+ dependencies:
2089
+ "@babel/parser": 7.28.5
2090
+ "@babel/types": 7.28.5
2091
+ "@jridgewell/gen-mapping": 0.3.13
2092
+ "@jridgewell/trace-mapping": 0.3.31
2093
+ jsesc: 3.1.0
2094
+
2095
+ "@babel/helper-compilation-targets@7.27.2":
2096
+ dependencies:
2097
+ "@babel/compat-data": 7.28.5
2098
+ "@babel/helper-validator-option": 7.27.1
2099
+ browserslist: 4.27.0
2100
+ lru-cache: 5.1.1
2101
+ semver: 6.3.1
2102
+
2103
+ "@babel/helper-globals@7.28.0": {}
2104
+
2105
+ "@babel/helper-module-imports@7.27.1":
2106
+ dependencies:
2107
+ "@babel/traverse": 7.28.5
2108
+ "@babel/types": 7.28.5
2109
+ transitivePeerDependencies:
2110
+ - supports-color
2111
+
2112
+ "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)":
2113
+ dependencies:
2114
+ "@babel/core": 7.28.5
2115
+ "@babel/helper-module-imports": 7.27.1
2116
+ "@babel/helper-validator-identifier": 7.28.5
2117
+ "@babel/traverse": 7.28.5
2118
+ transitivePeerDependencies:
2119
+ - supports-color
2120
+
2121
+ "@babel/helper-string-parser@7.27.1": {}
2122
+
2123
+ "@babel/helper-validator-identifier@7.28.5": {}
2124
+
2125
+ "@babel/helper-validator-option@7.27.1": {}
2126
+
2127
+ "@babel/helpers@7.28.4":
2128
+ dependencies:
2129
+ "@babel/template": 7.27.2
2130
+ "@babel/types": 7.28.5
2131
+
2132
+ "@babel/parser@7.28.5":
2133
+ dependencies:
2134
+ "@babel/types": 7.28.5
2135
+
1874
2136
  "@babel/runtime@7.28.4": {}
1875
2137
 
2138
+ "@babel/template@7.27.2":
2139
+ dependencies:
2140
+ "@babel/code-frame": 7.27.1
2141
+ "@babel/parser": 7.28.5
2142
+ "@babel/types": 7.28.5
2143
+
2144
+ "@babel/traverse@7.28.5":
2145
+ dependencies:
2146
+ "@babel/code-frame": 7.27.1
2147
+ "@babel/generator": 7.28.5
2148
+ "@babel/helper-globals": 7.28.0
2149
+ "@babel/parser": 7.28.5
2150
+ "@babel/template": 7.27.2
2151
+ "@babel/types": 7.28.5
2152
+ debug: 4.4.3
2153
+ transitivePeerDependencies:
2154
+ - supports-color
2155
+
2156
+ "@babel/types@7.28.5":
2157
+ dependencies:
2158
+ "@babel/helper-string-parser": 7.27.1
2159
+ "@babel/helper-validator-identifier": 7.28.5
2160
+
1876
2161
  "@emnapi/core@1.7.0":
1877
2162
  dependencies:
1878
2163
  "@emnapi/wasi-threads": 1.1.0
@@ -1952,6 +2237,25 @@ snapshots:
1952
2237
  dependencies:
1953
2238
  "@isaacs/balanced-match": 4.0.1
1954
2239
 
2240
+ "@jridgewell/gen-mapping@0.3.13":
2241
+ dependencies:
2242
+ "@jridgewell/sourcemap-codec": 1.5.5
2243
+ "@jridgewell/trace-mapping": 0.3.31
2244
+
2245
+ "@jridgewell/remapping@2.3.5":
2246
+ dependencies:
2247
+ "@jridgewell/gen-mapping": 0.3.13
2248
+ "@jridgewell/trace-mapping": 0.3.31
2249
+
2250
+ "@jridgewell/resolve-uri@3.1.2": {}
2251
+
2252
+ "@jridgewell/sourcemap-codec@1.5.5": {}
2253
+
2254
+ "@jridgewell/trace-mapping@0.3.31":
2255
+ dependencies:
2256
+ "@jridgewell/resolve-uri": 3.1.2
2257
+ "@jridgewell/sourcemap-codec": 1.5.5
2258
+
1955
2259
  "@napi-rs/wasm-runtime@0.2.12":
1956
2260
  dependencies:
1957
2261
  "@emnapi/core": 1.7.0
@@ -2143,7 +2447,7 @@ snapshots:
2143
2447
  "@unrs/resolver-binding-win32-x64-msvc@1.11.1":
2144
2448
  optional: true
2145
2449
 
2146
- "@vitest/eslint-plugin@1.4.0(eslint@9.39.1)(typescript@5.9.3)":
2450
+ "@vitest/eslint-plugin@1.4.1(eslint@9.39.1)(typescript@5.9.3)":
2147
2451
  dependencies:
2148
2452
  "@typescript-eslint/scope-manager": 8.46.3
2149
2453
  "@typescript-eslint/utils": 8.46.3(eslint@9.39.1)(typescript@5.9.3)
@@ -2249,6 +2553,8 @@ snapshots:
2249
2553
 
2250
2554
  balanced-match@1.0.2: {}
2251
2555
 
2556
+ baseline-browser-mapping@2.8.25: {}
2557
+
2252
2558
  brace-expansion@1.1.12:
2253
2559
  dependencies:
2254
2560
  balanced-match: 1.0.2
@@ -2262,6 +2568,14 @@ snapshots:
2262
2568
  dependencies:
2263
2569
  fill-range: 7.1.1
2264
2570
 
2571
+ browserslist@4.27.0:
2572
+ dependencies:
2573
+ baseline-browser-mapping: 2.8.25
2574
+ caniuse-lite: 1.0.30001753
2575
+ electron-to-chromium: 1.5.245
2576
+ node-releases: 2.0.27
2577
+ update-browserslist-db: 1.1.4(browserslist@4.27.0)
2578
+
2265
2579
  call-bind-apply-helpers@1.0.2:
2266
2580
  dependencies:
2267
2581
  es-errors: 1.3.0
@@ -2281,6 +2595,8 @@ snapshots:
2281
2595
 
2282
2596
  callsites@3.1.0: {}
2283
2597
 
2598
+ caniuse-lite@1.0.30001753: {}
2599
+
2284
2600
  chalk@2.4.2:
2285
2601
  dependencies:
2286
2602
  ansi-styles: 3.2.1
@@ -2308,6 +2624,8 @@ snapshots:
2308
2624
 
2309
2625
  concat-map@0.0.1: {}
2310
2626
 
2627
+ convert-source-map@2.0.0: {}
2628
+
2311
2629
  cross-spawn@6.0.6:
2312
2630
  dependencies:
2313
2631
  nice-try: 1.0.5
@@ -2372,6 +2690,8 @@ snapshots:
2372
2690
  es-errors: 1.3.0
2373
2691
  gopd: 1.2.0
2374
2692
 
2693
+ electron-to-chromium@1.5.245: {}
2694
+
2375
2695
  emoji-regex@9.2.2: {}
2376
2696
 
2377
2697
  error-ex@1.3.4:
@@ -2479,6 +2799,8 @@ snapshots:
2479
2799
  is-date-object: 1.1.0
2480
2800
  is-symbol: 1.1.1
2481
2801
 
2802
+ escalade@3.2.0: {}
2803
+
2482
2804
  escape-string-regexp@1.0.5: {}
2483
2805
 
2484
2806
  escape-string-regexp@4.0.0: {}
@@ -2545,9 +2867,16 @@ snapshots:
2545
2867
  optionalDependencies:
2546
2868
  eslint-config-prettier: 10.1.8(eslint@9.39.1)
2547
2869
 
2548
- eslint-plugin-react-hooks@5.2.0(eslint@9.39.1):
2870
+ eslint-plugin-react-hooks@7.0.1(eslint@9.39.1):
2549
2871
  dependencies:
2872
+ "@babel/core": 7.28.5
2873
+ "@babel/parser": 7.28.5
2550
2874
  eslint: 9.39.1
2875
+ hermes-parser: 0.25.1
2876
+ zod: 4.1.12
2877
+ zod-validation-error: 4.0.2(zod@4.1.12)
2878
+ transitivePeerDependencies:
2879
+ - supports-color
2551
2880
 
2552
2881
  eslint-plugin-react@7.37.5(eslint@9.39.1):
2553
2882
  dependencies:
@@ -2705,6 +3034,8 @@ snapshots:
2705
3034
 
2706
3035
  generator-function@2.0.1: {}
2707
3036
 
3037
+ gensync@1.0.0-beta.2: {}
3038
+
2708
3039
  get-intrinsic@1.3.0:
2709
3040
  dependencies:
2710
3041
  call-bind-apply-helpers: 1.0.2
@@ -2780,6 +3111,12 @@ snapshots:
2780
3111
  dependencies:
2781
3112
  function-bind: 1.1.2
2782
3113
 
3114
+ hermes-estree@0.25.1: {}
3115
+
3116
+ hermes-parser@0.25.1:
3117
+ dependencies:
3118
+ hermes-estree: 0.25.1
3119
+
2783
3120
  hosted-git-info@2.8.9: {}
2784
3121
 
2785
3122
  ignore@5.3.2: {}
@@ -2928,6 +3265,8 @@ snapshots:
2928
3265
  dependencies:
2929
3266
  argparse: 2.0.1
2930
3267
 
3268
+ jsesc@3.1.0: {}
3269
+
2931
3270
  json-buffer@3.0.1: {}
2932
3271
 
2933
3272
  json-parse-better-errors@1.0.2: {}
@@ -2936,6 +3275,8 @@ snapshots:
2936
3275
 
2937
3276
  json-stable-stringify-without-jsonify@1.0.1: {}
2938
3277
 
3278
+ json5@2.2.3: {}
3279
+
2939
3280
  jsx-ast-utils@3.3.5:
2940
3281
  dependencies:
2941
3282
  array-includes: 3.1.9
@@ -2975,6 +3316,10 @@ snapshots:
2975
3316
  dependencies:
2976
3317
  js-tokens: 4.0.0
2977
3318
 
3319
+ lru-cache@5.1.1:
3320
+ dependencies:
3321
+ yallist: 3.1.1
3322
+
2978
3323
  math-intrinsics@1.1.0: {}
2979
3324
 
2980
3325
  memorystream@0.3.1: {}
@@ -3006,6 +3351,8 @@ snapshots:
3006
3351
 
3007
3352
  nice-try@1.0.5: {}
3008
3353
 
3354
+ node-releases@2.0.27: {}
3355
+
3009
3356
  normalize-package-data@2.5.0:
3010
3357
  dependencies:
3011
3358
  hosted-git-info: 2.8.9
@@ -3105,6 +3452,8 @@ snapshots:
3105
3452
  dependencies:
3106
3453
  pify: 3.0.0
3107
3454
 
3455
+ picocolors@1.1.1: {}
3456
+
3108
3457
  picomatch@2.3.1: {}
3109
3458
 
3110
3459
  pidtree@0.3.1: {}
@@ -3119,7 +3468,7 @@ snapshots:
3119
3468
  dependencies:
3120
3469
  fast-diff: 1.3.0
3121
3470
 
3122
- prettier-plugin-tailwindcss@0.6.14(prettier@3.6.2):
3471
+ prettier-plugin-tailwindcss@0.7.1(prettier@3.6.2):
3123
3472
  dependencies:
3124
3473
  prettier: 3.6.2
3125
3474
 
@@ -3467,6 +3816,12 @@ snapshots:
3467
3816
  "@unrs/resolver-binding-win32-ia32-msvc": 1.11.1
3468
3817
  "@unrs/resolver-binding-win32-x64-msvc": 1.11.1
3469
3818
 
3819
+ update-browserslist-db@1.1.4(browserslist@4.27.0):
3820
+ dependencies:
3821
+ browserslist: 4.27.0
3822
+ escalade: 3.2.0
3823
+ picocolors: 1.1.1
3824
+
3470
3825
  uri-js@4.4.1:
3471
3826
  dependencies:
3472
3827
  punycode: 2.3.1
@@ -3527,4 +3882,12 @@ snapshots:
3527
3882
 
3528
3883
  word-wrap@1.2.5: {}
3529
3884
 
3885
+ yallist@3.1.1: {}
3886
+
3530
3887
  yocto-queue@0.1.0: {}
3888
+
3889
+ zod-validation-error@4.0.2(zod@4.1.12):
3890
+ dependencies:
3891
+ zod: 4.1.12
3892
+
3893
+ zod@4.1.12: {}
data/prettier.js CHANGED
@@ -1,3 +1,11 @@
1
+ // Try to load the Tailwind plugin if available
2
+ let tailwindPlugin
3
+ try {
4
+ tailwindPlugin = await import("prettier-plugin-tailwindcss")
5
+ } catch {
6
+ // Plugin not installed, that's okay
7
+ }
8
+
1
9
  /** @type {import("prettier").Options} */
2
10
  export const config = {
3
11
  arrowParens: "avoid",
@@ -39,9 +47,12 @@ export const config = {
39
47
  },
40
48
  },
41
49
  ],
42
- plugins: ["prettier-plugin-tailwindcss"],
43
- tailwindAttributes: ["class", "className", ".*[cC]lassName"],
44
- tailwindFunctions: ["clsx", "cn", "twcn"],
50
+ // Only include Tailwind plugin and config if it's available
51
+ ...(tailwindPlugin && {
52
+ plugins: ["prettier-plugin-tailwindcss"],
53
+ tailwindAttributes: ["class", "className", ".*[cC]lassName"],
54
+ tailwindFunctions: ["clsx", "cn", "twcn"],
55
+ }),
45
56
  }
46
57
 
47
58
  // this is for backward compatibility
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skyltmax_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Signmax AB