@furystack/shades 11.0.34 → 11.0.35

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +15 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [11.0.35] - 2026-01-26
4
+
5
+ ### 🔧 Chores
6
+
7
+ - Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
8
+
3
9
  ## [11.0.34] - 2026-01-26
4
10
 
5
11
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@furystack/shades",
3
- "version": "11.0.34",
4
- "description": "Google Authentication Provider for FuryStack",
3
+ "version": "11.0.35",
4
+ "description": "A lightweight UI framework for FuryStack with JSX support",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:es6": "tsc --outDir ./esm"
7
+ "build": "tsc --outDir ./esm"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./esm/index.d.ts",
11
12
  "import": "./esm/index.js"
12
13
  }
13
14
  },
14
15
  "files": [
15
16
  "esm",
16
- "types",
17
17
  "src"
18
18
  ],
19
19
  "repository": {
@@ -25,12 +25,14 @@
25
25
  "Shades",
26
26
  "UI",
27
27
  "JSX",
28
- "WebApp"
28
+ "frontend",
29
+ "framework",
30
+ "components"
29
31
  ],
30
32
  "publishConfig": {
31
33
  "access": "public"
32
34
  },
33
- "author": "gallay.lajos@gmail.com",
35
+ "author": "Gallay Lajos <gallay.lajos@gmail.com>",
34
36
  "license": "GPL-2.0",
35
37
  "bugs": {
36
38
  "url": "https://github.com/furystack/furystack/issues"
@@ -44,11 +46,14 @@
44
46
  "vitest": "^4.0.17"
45
47
  },
46
48
  "dependencies": {
47
- "@furystack/inject": "^12.0.27",
48
- "@furystack/rest": "^8.0.33",
49
- "@furystack/utils": "^8.1.8",
49
+ "@furystack/inject": "^12.0.28",
50
+ "@furystack/rest": "^8.0.34",
51
+ "@furystack/utils": "^8.1.9",
50
52
  "path-to-regexp": "^8.3.0",
51
53
  "semaphore-async-await": "^1.5.1"
52
54
  },
53
- "gitHead": "76e1d17a71b981984935c9a7a5791cf61ebf5213"
55
+ "engines": {
56
+ "node": ">=22.0.0"
57
+ },
58
+ "sideEffects": false
54
59
  }