@power-seo/content-analysis 1.0.9 → 1.0.11

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -6
  3. package/package.json +35 -35
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
- ![SEO Score Dashboard](../../image/content-analysis/score-dashboard.svg)
34
+ ![SEO Score Dashboard](../../image/content-analysis/comparison.svg)
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
- ![Google SERP Preview](../../image/content-analysis/serp-preview.svg)
55
+ ![Content Analyzer Editor UI](../../image/content-analysis/editor-ui.svg)
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
- ![Keyword Density Analysis](../../image/content-analysis/keyword-density.svg)
78
+ ![Checks Accuracy](../../image/content-analysis/checks-accuracy.svg)
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
- ![SEO Check Results](../../image/content-analysis/check-results.svg)
116
+ ![Yoast Replacement Benefit](../../image/content-analysis/yoast-replacement-benefit.svg)
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 — 20 builders + 18 React components |
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 |
@@ -381,7 +381,7 @@ All 17 packages are independently installable — use only what you need.
381
381
 
382
382
  ## Keywords
383
383
 
384
- seo content analysis · yoast seo alternative · content scoring typescript · keyword density checker · react seo scoring · nextjs content analysis · seo score npm · focus keyphrase checker · meta description validator · heading seo checker · content quality gate · headless cms seo · seo readability checker · content optimization library · programmatic seo · keyphrase density analyzer · seo audit npm package · typescript seo library · content seo automation · react editor seo · ci seo check · edge runtime seo
384
+ seo content analysis · yoast seo alternative · keyword density checker · focus keyphrase · react seo · nextjs seo · meta description validator · heading seo checker · content quality gate · headless cms seo · programmatic seo · keyphrase density · seo audit · typescript seo · content seo automation · react editor seo · ci seo · edge runtime seo · seo scoring · content analysis
385
385
 
386
386
  ---
387
387
 
package/package.json CHANGED
@@ -1,7 +1,29 @@
1
1
  {
2
2
  "name": "@power-seo/content-analysis",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Yoast-style SEO content analysis engine with scoring, checks, and React components",
5
+ "keywords": [
6
+ "seo-content-analysis",
7
+ "yoast-seo-alternative",
8
+ "keyword-density-checker",
9
+ "focus-keyphrase",
10
+ "react-seo",
11
+ "nextjs-seo",
12
+ "meta-description-validator",
13
+ "heading-seo-checker",
14
+ "content-quality-gate",
15
+ "headless-cms-seo",
16
+ "programmatic-seo",
17
+ "keyphrase-density",
18
+ "seo-audit",
19
+ "typescript-seo",
20
+ "content-seo-automation",
21
+ "react-editor-seo",
22
+ "ci-seo",
23
+ "edge-runtime-seo",
24
+ "seo-scoring",
25
+ "content-analysis"
26
+ ],
5
27
  "license": "MIT",
6
28
  "type": "module",
7
29
  "exports": {
@@ -22,18 +44,8 @@
22
44
  "files": [
23
45
  "dist"
24
46
  ],
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
47
  "dependencies": {
36
- "@power-seo/core": "workspace:*"
48
+ "@power-seo/core": "1.0.11"
37
49
  },
38
50
  "peerDependencies": {
39
51
  "react": "^18.0.0 || ^19.0.0"
@@ -54,28 +66,6 @@
54
66
  "typescript": "^5.7.0",
55
67
  "vitest": "^2.1.0"
56
68
  },
57
- "keywords": [
58
- "seo-content-analysis",
59
- "yoast-seo-alternative",
60
- "keyword-density-checker",
61
- "focus-keyphrase",
62
- "react-seo",
63
- "nextjs-seo",
64
- "meta-description-validator",
65
- "heading-seo-checker",
66
- "content-quality-gate",
67
- "headless-cms-seo",
68
- "programmatic-seo",
69
- "keyphrase-density",
70
- "seo-audit",
71
- "typescript-seo",
72
- "content-seo-automation",
73
- "react-editor-seo",
74
- "ci-seo",
75
- "edge-runtime-seo",
76
- "seo-scoring",
77
- "content-analysis"
78
- ],
79
69
  "sideEffects": false,
80
70
  "author": "CyberCraft Bangladesh <info@ccbd.dev>",
81
71
  "repository": {
@@ -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
+ }