@opensip-cli/checks-python 0.1.12 → 0.1.13
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 +3 -3
- package/package.json +8 -6
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`),
|
|
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.
|
|
29
|
-
- 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.
|
|
28
|
+
- 🧭 Package catalog (what every package does): https://github.com/opensip-ai/opensip-cli/blob/v0.1.13/docs/public/70-reference/02-package-catalog.md
|
|
29
|
+
- 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.13/packages/fitness/checks-python
|
|
30
30
|
|
|
31
31
|
## License
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensip-cli/checks-python",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Python fitness checks for opensip-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"opensipTools": {
|
|
25
|
-
"kind": "fit-pack"
|
|
25
|
+
"kind": "fit-pack",
|
|
26
|
+
"targetDomain": "fit-pack",
|
|
27
|
+
"targetDomainApiVersion": 1
|
|
26
28
|
},
|
|
27
29
|
"main": "./dist/index.js",
|
|
28
30
|
"types": "./dist/index.d.ts",
|
|
@@ -35,14 +37,14 @@
|
|
|
35
37
|
"NOTICE"
|
|
36
38
|
],
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@opensip-cli/fitness": "0.1.
|
|
39
|
-
"@opensip-cli/lang-python": "0.1.
|
|
40
|
+
"@opensip-cli/fitness": "0.1.13",
|
|
41
|
+
"@opensip-cli/lang-python": "0.1.13"
|
|
40
42
|
},
|
|
41
43
|
"devDependencies": {
|
|
42
44
|
"@types/node": "^24.13.2",
|
|
43
45
|
"vitest": "^4.1.8",
|
|
44
|
-
"@opensip-cli/core": "0.1.
|
|
45
|
-
"@opensip-cli/test-support": "0.1.
|
|
46
|
+
"@opensip-cli/core": "0.1.13",
|
|
47
|
+
"@opensip-cli/test-support": "0.1.13"
|
|
46
48
|
},
|
|
47
49
|
"scripts": {
|
|
48
50
|
"build": "tsc",
|