@se-studio/site-check 1.1.0 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Restore `site-check-screaming-frog` CLI bin entry omitted from 1.1.0 publish.
8
+
3
9
  ## 1.1.0
4
10
 
5
11
  ### Minor Changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@se-studio/site-check",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Validate SE marketing sites (sitemap, llms.txt) and download markdown files preserving structure",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,7 +11,8 @@
11
11
  "type": "module",
12
12
  "main": "./dist/cli.js",
13
13
  "bin": {
14
- "site-check": "./dist/cli.js"
14
+ "site-check": "./dist/cli.js",
15
+ "site-check-screaming-frog": "./dist/screaming-frog-cli.js"
15
16
  },
16
17
  "files": [
17
18
  "dist",
@@ -22,6 +23,8 @@
22
23
  "llms.txt",
23
24
  "markdown",
24
25
  "validation",
26
+ "screaming-frog",
27
+ "seo",
25
28
  "cli",
26
29
  "vercel",
27
30
  "deployment-protection"
@@ -40,6 +43,7 @@
40
43
  "dev": "tsc --project tsconfig.build.json --watch",
41
44
  "type-check": "tsc --noEmit",
42
45
  "lint": "biome lint .",
43
- "clean": "rm -rf dist .turbo *.tsbuildinfo"
46
+ "clean": "rm -rf dist .turbo *.tsbuildinfo",
47
+ "test": "pnpm build && node --test scripts/screaming-frog-audit.test.mjs"
44
48
  }
45
49
  }