@opensip-cli/graph 0.1.0 → 0.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/README.md +3 -3
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
This package is the **engine** behind a first-party `opensip-cli` tool. The CLI bundles it — you do not normally install it directly.
|
|
10
10
|
|
|
11
|
-
Part of [**opensip-cli**](https://github.com/opensip-ai/opensip-cli) — an open-source codebase
|
|
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`).
|
|
12
12
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
@@ -23,8 +23,8 @@ This package is published for the CLI and advanced plugin authors; most users sh
|
|
|
23
23
|
## Documentation
|
|
24
24
|
|
|
25
25
|
- 📚 Project docs: https://opensip.ai/docs/opensip-cli/
|
|
26
|
-
- 🧭 Package catalog (what every package does): https://github.com/opensip-ai/opensip-cli/blob/v0.1.
|
|
27
|
-
- 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.
|
|
26
|
+
- 🧭 Package catalog (what every package does): https://github.com/opensip-ai/opensip-cli/blob/v0.1.1/docs/public/70-reference/02-package-catalog.md
|
|
27
|
+
- 📦 Source: https://github.com/opensip-ai/opensip-cli/tree/v0.1.1/packages/graph/engine
|
|
28
28
|
|
|
29
29
|
## License
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensip-cli/graph",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Static call-graph + dead-end analysis (seven-stage pipeline)",
|
|
6
6
|
"keywords": [
|
|
@@ -113,19 +113,19 @@
|
|
|
113
113
|
"ink": "^7.0.5",
|
|
114
114
|
"react": "^19.2.7",
|
|
115
115
|
"zod": "^4.4.3",
|
|
116
|
-
"@opensip-cli/
|
|
117
|
-
"@opensip-cli/
|
|
118
|
-
"@opensip-cli/core": "0.1.
|
|
119
|
-
"@opensip-cli/
|
|
120
|
-
"@opensip-cli/
|
|
121
|
-
"@opensip-cli/
|
|
116
|
+
"@opensip-cli/config": "0.1.1",
|
|
117
|
+
"@opensip-cli/cli-ui": "0.1.1",
|
|
118
|
+
"@opensip-cli/core": "0.1.1",
|
|
119
|
+
"@opensip-cli/datastore": "0.1.1",
|
|
120
|
+
"@opensip-cli/contracts": "0.1.1",
|
|
121
|
+
"@opensip-cli/session-store": "0.1.1"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"@types/node": "^24.13.2",
|
|
125
125
|
"@types/react": "^19.2.17",
|
|
126
126
|
"typescript": "~6.0.3",
|
|
127
127
|
"vitest": "^4.1.8",
|
|
128
|
-
"@opensip-cli/output": "0.1.
|
|
128
|
+
"@opensip-cli/output": "0.1.1"
|
|
129
129
|
},
|
|
130
130
|
"scripts": {
|
|
131
131
|
"build": "tsc",
|