@power-seo/content-analysis 1.0.11 → 1.0.15
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 +11 -13
- package/dist/index.cjs +10062 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +267 -3
- package/dist/index.d.ts +267 -3
- package/dist/index.js +9977 -30
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +9892 -29
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +1 -1
- package/dist/react.d.ts +1 -1
- package/dist/react.js +9892 -29
- package/dist/react.js.map +1 -1
- package/dist/types-bMzFlDeW.d.cts +9 -0
- package/dist/types-bMzFlDeW.d.ts +9 -0
- package/package.json +9 -3
- package/dist/types-BGadIBx8.d.cts +0 -9
- package/dist/types-BGadIBx8.d.ts +0 -9
package/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
# @power-seo/content-analysis
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
Keyword-focused content analysis with real-time scoring, readability checks, and actionable feedback — like Yoast SEO, but as a standalone TypeScript library that works anywhere.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@power-seo/content-analysis)
|
|
8
8
|
[](https://www.npmjs.com/package/@power-seo/content-analysis)
|
|
9
9
|
[](https://socket.dev/npm/package/@power-seo/content-analysis)
|
|
10
|
-
[](https://github.com/CyberCraftBD/power-seo/actions)
|
|
11
10
|
[](https://opensource.org/licenses/MIT)
|
|
12
11
|
[](https://www.typescriptlang.org/)
|
|
13
12
|
[](https://bundlephobia.com/package/@power-seo/content-analysis)
|
|
@@ -31,7 +30,13 @@ Keyword-focused content analysis with real-time scoring, readability checks, and
|
|
|
31
30
|
| SEO score | ❌ Guesswork | ✅ Aggregate score with per-check breakdown |
|
|
32
31
|
| Framework support | ❌ WordPress-only | ✅ Next.js, Remix, Vite, Node.js, Edge |
|
|
33
32
|
|
|
34
|
-

|
|
34
|
+
|
|
35
|
+
<p align="left">
|
|
36
|
+
<a href="https://www.buymeacoffee.com/ccbd.dev" target="_blank">
|
|
37
|
+
<img src="https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20coffee&emoji=&slug=ccbd.dev&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff" />
|
|
38
|
+
</a>
|
|
39
|
+
</p>
|
|
35
40
|
|
|
36
41
|
---
|
|
37
42
|
|
|
@@ -52,7 +57,7 @@ Keyword-focused content analysis with real-time scoring, readability checks, and
|
|
|
52
57
|
- **Full TypeScript support** — complete type definitions for all inputs, outputs, and check IDs
|
|
53
58
|
- **Tree-shakeable** — import only the checks you use; zero dead code in your bundle
|
|
54
59
|
|
|
55
|
-

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

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

|
|
117
122
|
|
|
118
123
|
**Status thresholds (per check):**
|
|
119
124
|
|
|
@@ -347,7 +352,6 @@ function analyzeContent(
|
|
|
347
352
|
- No install scripts (`postinstall`, `preinstall`)
|
|
348
353
|
- No runtime network access
|
|
349
354
|
- No `eval` or dynamic code execution
|
|
350
|
-
- npm provenance enabled — every release is signed via Sigstore through GitHub Actions
|
|
351
355
|
- CI-signed builds — all releases published via verified `github.com/CyberCraftBD/power-seo` workflow
|
|
352
356
|
- Safe for SSR, Edge, and server environments
|
|
353
357
|
|
|
@@ -379,12 +383,6 @@ All 17 packages are independently installable — use only what you need.
|
|
|
379
383
|
|
|
380
384
|
---
|
|
381
385
|
|
|
382
|
-
## Keywords
|
|
383
|
-
|
|
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
|
-
|
|
386
|
-
---
|
|
387
|
-
|
|
388
386
|
## About [CyberCraft Bangladesh](https://ccbd.dev)
|
|
389
387
|
|
|
390
388
|
**[CyberCraft Bangladesh](https://ccbd.dev)** is a Bangladesh-based enterprise-grade software development and Full Stack SEO service provider company specializing in ERP system development, AI-powered SaaS and business applications, full-stack SEO services, custom website development, and scalable eCommerce platforms. We design and develop intelligent, automation-driven SaaS and enterprise solutions that help startups, SMEs, NGOs, educational institutes, and large organizations streamline operations, enhance digital visibility, and accelerate growth through modern cloud-native technologies.
|