lightnet 4.0.7 → 4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # lightnet
2
2
 
3
+ ## 4.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#382](https://github.com/LightNetDev/LightNet/pull/382) [`c6c8f31`](https://github.com/LightNetDev/LightNet/commit/c6c8f31adf464a842739f2b99d858aa0ba5d43e9) Thanks [@smn-cds](https://github.com/smn-cds)! - Update internal dependency marked to v18
8
+
9
+ - [#382](https://github.com/LightNetDev/LightNet/pull/382) [`c6c8f31`](https://github.com/LightNetDev/LightNet/commit/c6c8f31adf464a842739f2b99d858aa0ba5d43e9) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
10
+
3
11
  ## 4.0.7
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ![LightNet](https://github.com/LightNetDev/lightnet/blob/main/lightnet-banner.webp)
2
2
 
3
- Many ministries struggle to share media content effectively. LightNet makes it easy to **run your own digital media library**, so more people can find what they need and grow in faith.
3
+ **Running digital media libraries for ministries** can be complex and time consuming. LightNet makes this easier for developers, so ministries can share media more effectively.
4
4
 
5
5
  Built as an integration for the [Astro framework](https://astro.build), LightNet creates fast, static sites that run anywhere.
6
6
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "LightNet makes it easy to run your own digital media library.",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
- "version": "4.0.7",
6
+ "version": "4.0.8",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/LightNetDev/lightnet",
@@ -56,22 +56,22 @@
56
56
  "@iconify-json/mdi": "^1.2.3",
57
57
  "@iconify/tailwind": "^1.2.0",
58
58
  "@tailwindcss/typography": "^0.5.19",
59
- "@tanstack/react-virtual": "^3.13.23",
60
- "autoprefixer": "^10.4.27",
59
+ "@tanstack/react-virtual": "^3.13.24",
60
+ "autoprefixer": "^10.5.0",
61
61
  "embla-carousel": "^8.6.0",
62
62
  "embla-carousel-wheel-gestures": "^8.1.0",
63
63
  "fuse.js": "^7.3.0",
64
- "i18next": "^26.0.4",
64
+ "i18next": "^26.0.6",
65
65
  "lucide-react": "^1.8.0",
66
- "marked": "^17.0.6",
67
- "postcss": "^8.5.9",
66
+ "marked": "^18.0.2",
67
+ "postcss": "^8.5.10",
68
68
  "postcss-load-config": "^6.0.1",
69
69
  "yaml": "^2.8.3"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@playwright/test": "^1.59.1",
73
73
  "@types/react": "^19.2.14",
74
- "astro": "^6.1.5",
74
+ "astro": "^6.1.8",
75
75
  "typescript": "^5.9.3",
76
76
  "vitest": "^4.1.4",
77
77
  "@internal/e2e-test-utils": "^0.0.1"
@@ -1,6 +1,6 @@
1
1
  import type { APIRoute } from "astro"
2
2
 
3
- import pkg from "../../package.json" assert { type: "json" }
3
+ import pkg from "../../package.json"
4
4
 
5
5
  export const GET: APIRoute = () => {
6
6
  return new Response(JSON.stringify({ lightnet: pkg.version }))