specshield 3.4.3 → 3.4.5

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -67,7 +67,7 @@ This CLI is one surface of the **SpecShield™ platform**. The same contract-com
67
67
 
68
68
  | Surface | Best for |
69
69
  |---|---|
70
- | **GitHub App** — [github.com/apps/specshield](https://github.com/apps/specshield) | Zero-config PR checks. Install once; every PR gets a check run and a diff comment. |
70
+ | **GitHub App** — [github.com/apps/specshield-cli](https://github.com/apps/specshield-cli) | Zero-config PR checks. Install once; every PR gets a check run and a diff comment. |
71
71
  | **GitHub Action** — [`specshield-io/bdct-action@v1`](https://github.com/marketplace/actions/specshield-bdct) | Pinned, reproducible BDCT + governance gate in any GitHub workflow. |
72
72
  | **CLI** *(this package)* | Any CI — GitLab, Jenkins, CircleCI, Bitbucket, Drone — or your laptop. |
73
73
  | **IntelliJ plugin** — [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/33137-specshield) | Inline spec findings, one-click auto-fixes, compare & explain — inside IntelliJ IDEA, WebStorm, PyCharm and more. |
@@ -1499,7 +1499,7 @@ MIT © SpecShield Software Private Limited
1499
1499
 
1500
1500
  <div align="center">
1501
1501
 
1502
- **The SpecShield™ platform:** [Dashboard](https://specshield.io) · [GitHub App](https://github.com/apps/specshield) · [GitHub Action](https://github.com/marketplace/actions/specshield-bdct) · [IntelliJ Plugin](https://plugins.jetbrains.com/plugin/33137-specshield) · [MCP Server](https://github.com/specshield-io/specshield-mcp-server)
1502
+ **The SpecShield™ platform:** [Dashboard](https://specshield.io) · [GitHub App](https://github.com/apps/specshield-cli) · [GitHub Action](https://github.com/marketplace/actions/specshield-bdct) · [IntelliJ Plugin](https://plugins.jetbrains.com/plugin/33137-specshield) · [MCP Server](https://github.com/specshield-io/specshield-mcp-server)
1503
1503
 
1504
1504
  **[⭐ Star on GitHub](https://github.com/specshield-io/specshield-cli) · [📦 View on npm](https://www.npmjs.com/package/specshield) · [🚀 Create free account](https://specshield.io) · [⚖️ Compare](https://specshield.io/alternatives)**
1505
1505
 
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "specshield",
3
- "version": "3.4.3",
3
+ "version": "3.4.5",
4
4
  "description": "Contract compatibility testing for APIs — catch breaking OpenAPI changes before they reach your consumers, with can-i-deploy deploy gating and GitHub PR checks. (a.k.a. bidirectional contract testing.)",
5
5
  "main": "src/cli.js",
6
+ "homepage": "https://specshield.io",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/specshield-io/specshield-cli.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/specshield-io/specshield-cli/issues"
13
+ },
6
14
  "bin": {
7
15
  "specshield": "./bin/specshield.js"
8
16
  },