svelte-vitals 0.5.0 → 0.5.1
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/README.md +2 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
> **A SvelteKit SEO checker — not a runtime Web Vitals reporter.**
|
|
7
7
|
> Diagnose your project's SEO health by statically analyzing your source code, before it ships. No browser, no build server, no headless Chrome.
|
|
8
|
+
>
|
|
9
|
+
> **ESM-only** (Node 18+). Ships ES modules only; `require()` is unsupported by design.
|
|
8
10
|
|
|
9
11
|
```bash
|
|
10
12
|
npx svelte-vitals
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-vitals",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "A SvelteKit SEO checker — not a runtime Web Vitals reporter. Static analysis of your routes' head metadata.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
"url": "https://github.com/oekazuma/svelte-vitals/issues"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://github.com/oekazuma/svelte-vitals#readme",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
},
|
|
28
|
+
"sideEffects": false,
|
|
25
29
|
"bin": {
|
|
26
30
|
"svelte-vitals": "./dist/bin.js"
|
|
27
31
|
},
|
|
@@ -38,7 +42,7 @@
|
|
|
38
42
|
"mri": "^1.2.0",
|
|
39
43
|
"svelte": "^5.56.3",
|
|
40
44
|
"tinyglobby": "^0.2.17",
|
|
41
|
-
"@svelte-vitals/core": "0.
|
|
45
|
+
"@svelte-vitals/core": "0.7.0"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
44
48
|
"@types/node": "^24.7.0"
|