@opensip-cli/checks-cpp 0.1.12 → 0.1.14

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 +3 -3
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  This is a **fitness check pack**. Install it alongside the `opensip-cli` CLI and its checks are discovered automatically.
10
10
 
11
- Part of [**opensip-cli**](https://github.com/opensip-ai/opensip-cli) — an open-source codebase intelligence CLI: fitness checks (`fit`), static call-graph analysis (`graph`), and simulation (`sim`).
11
+ Part of [**opensip-cli**](https://github.com/opensip-ai/opensip-cli) — an open-source codebase intelligence CLI: fitness checks (`fit`), static call-graph analysis (`graph`), simulation (`sim`), and advisory reduction audits (`yagni`).
12
12
 
13
13
  **Distribution model:** the published `opensip-cli` npm package is a full-stack bundle of first-party tools, check packs, and language adapters. Third-party tools install separately via the `opensipTools` manifest and host allowlist; a slim install without bundled tools is not a current goal.
14
14
 
@@ -25,8 +25,8 @@ This package is published for the CLI and advanced plugin authors; most users sh
25
25
  ## Documentation
26
26
 
27
27
  - 📚 Project docs: https://opensip.ai/docs/opensip-cli/
28
- - 🧭 Package catalog (what every package does): https://github.com/opensip-ai/opensip-cli/blob/v0.1.12/docs/public/70-reference/02-package-catalog.md
29
- - 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.12/packages/fitness/checks-cpp
28
+ - 🧭 Package catalog (what every package does): https://github.com/opensip-ai/opensip-cli/blob/v0.1.14/docs/public/70-reference/02-package-catalog.md
29
+ - 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.14/packages/fitness/checks-cpp
30
30
 
31
31
  ## License
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensip-cli/checks-cpp",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "license": "Apache-2.0",
5
5
  "description": "C/C++ fitness checks (clang-tidy backed)",
6
6
  "keywords": [
@@ -23,7 +23,9 @@
23
23
  },
24
24
  "type": "module",
25
25
  "opensipTools": {
26
- "kind": "fit-pack"
26
+ "kind": "fit-pack",
27
+ "targetDomain": "fit-pack",
28
+ "targetDomainApiVersion": 1
27
29
  },
28
30
  "main": "./dist/index.js",
29
31
  "types": "./dist/index.d.ts",
@@ -36,13 +38,13 @@
36
38
  "NOTICE"
37
39
  ],
38
40
  "dependencies": {
39
- "@opensip-cli/fitness": "0.1.12",
40
- "@opensip-cli/core": "0.1.12"
41
+ "@opensip-cli/core": "0.1.14",
42
+ "@opensip-cli/fitness": "0.1.14"
41
43
  },
42
44
  "devDependencies": {
43
45
  "@types/node": "^24.13.2",
44
46
  "vitest": "^4.1.8",
45
- "@opensip-cli/test-support": "0.1.12"
47
+ "@opensip-cli/test-support": "0.1.14"
46
48
  },
47
49
  "scripts": {
48
50
  "build": "tsc",