@power-seo/content-analysis 1.0.9 → 1.0.10
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/LICENSE +21 -0
- package/README.md +5 -5
- package/package.json +13 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 CCBD SEO Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Keyword-focused content analysis with real-time scoring, readability checks, and
|
|
|
31
31
|
| SEO score | ❌ Guesswork | ✅ Aggregate score with per-check breakdown |
|
|
32
32
|
| Framework support | ❌ WordPress-only | ✅ Next.js, Remix, Vite, Node.js, Edge |
|
|
33
33
|
|
|
34
|
-

|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
@@ -52,7 +52,7 @@ Keyword-focused content analysis with real-time scoring, readability checks, and
|
|
|
52
52
|
- **Full TypeScript support** — complete type definitions for all inputs, outputs, and check IDs
|
|
53
53
|
- **Tree-shakeable** — import only the checks you use; zero dead code in your bundle
|
|
54
54
|
|
|
55
|
-

|
|
56
56
|
|
|
57
57
|
---
|
|
58
58
|
|
|
@@ -75,7 +75,7 @@ Keyword-focused content analysis with real-time scoring, readability checks, and
|
|
|
75
75
|
| CI / Node.js usage | ✅ | ❌ | ❌ | ✅ | ❌ |
|
|
76
76
|
| Zero runtime dependencies | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
77
77
|
|
|
78
|
-

|
|
79
79
|
|
|
80
80
|
---
|
|
81
81
|
|
|
@@ -113,7 +113,7 @@ console.log(result.results);
|
|
|
113
113
|
// [{ id: 'title-presence', status: 'good', description: '...', score: 5, maxScore: 5 }, ...]
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-

|
|
117
117
|
|
|
118
118
|
**Status thresholds (per check):**
|
|
119
119
|
|
|
@@ -362,7 +362,7 @@ All 17 packages are independently installable — use only what you need.
|
|
|
362
362
|
| [`@power-seo/core`](https://www.npmjs.com/package/@power-seo/core) | `npm i @power-seo/core` | Framework-agnostic utilities, types, validators, and constants |
|
|
363
363
|
| [`@power-seo/react`](https://www.npmjs.com/package/@power-seo/react) | `npm i @power-seo/react` | React SEO components — meta, Open Graph, Twitter Card, breadcrumbs |
|
|
364
364
|
| [`@power-seo/meta`](https://www.npmjs.com/package/@power-seo/meta) | `npm i @power-seo/meta` | SSR meta helpers for Next.js App Router, Remix v2, and generic SSR |
|
|
365
|
-
| [`@power-seo/schema`](https://www.npmjs.com/package/@power-seo/schema) | `npm i @power-seo/schema` | Type-safe JSON-LD structured data —
|
|
365
|
+
| [`@power-seo/schema`](https://www.npmjs.com/package/@power-seo/schema) | `npm i @power-seo/schema` | Type-safe JSON-LD structured data — 23 builders + 21 React components |
|
|
366
366
|
| [`@power-seo/content-analysis`](https://www.npmjs.com/package/@power-seo/content-analysis) | `npm i @power-seo/content-analysis` | Yoast-style SEO content scoring engine with React components |
|
|
367
367
|
| [`@power-seo/readability`](https://www.npmjs.com/package/@power-seo/readability) | `npm i @power-seo/readability` | Readability scoring — Flesch-Kincaid, Gunning Fog, Coleman-Liau, ARI |
|
|
368
368
|
| [`@power-seo/preview`](https://www.npmjs.com/package/@power-seo/preview) | `npm i @power-seo/preview` | SERP, Open Graph, and Twitter/X Card preview generators |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@power-seo/content-analysis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Yoast-style SEO content analysis engine with scoring, checks, and React components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -22,18 +22,8 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "tsup",
|
|
27
|
-
"dev": "tsup --watch",
|
|
28
|
-
"test": "vitest run",
|
|
29
|
-
"test:watch": "vitest",
|
|
30
|
-
"typecheck": "tsc --noEmit",
|
|
31
|
-
"lint": "eslint src/",
|
|
32
|
-
"lint:fix": "eslint src/ --fix",
|
|
33
|
-
"clean": "rimraf dist"
|
|
34
|
-
},
|
|
35
25
|
"dependencies": {
|
|
36
|
-
"@power-seo/core": "
|
|
26
|
+
"@power-seo/core": "1.0.10"
|
|
37
27
|
},
|
|
38
28
|
"peerDependencies": {
|
|
39
29
|
"react": "^18.0.0 || ^19.0.0"
|
|
@@ -93,5 +83,15 @@
|
|
|
93
83
|
"funding": {
|
|
94
84
|
"type": "github",
|
|
95
85
|
"url": "https://github.com/sponsors/cybercraftbd"
|
|
86
|
+
},
|
|
87
|
+
"scripts": {
|
|
88
|
+
"build": "tsup",
|
|
89
|
+
"dev": "tsup --watch",
|
|
90
|
+
"test": "vitest run",
|
|
91
|
+
"test:watch": "vitest",
|
|
92
|
+
"typecheck": "tsc --noEmit",
|
|
93
|
+
"lint": "eslint src/",
|
|
94
|
+
"lint:fix": "eslint src/ --fix",
|
|
95
|
+
"clean": "rimraf dist"
|
|
96
96
|
}
|
|
97
|
-
}
|
|
97
|
+
}
|