@ssot-registry/lineage-graph 0.2.25-dev.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.
- package/README.md +15 -0
- package/dist/LineageGraph.d.ts +2 -0
- package/dist/LineageGraphApp.d.ts +1 -0
- package/dist/components/ConnectedEdgesPanel.d.ts +9 -0
- package/dist/components/FamilyFilters.d.ts +6 -0
- package/dist/components/Legend.d.ts +4 -0
- package/dist/components/LineageGraphCanvas.d.ts +40 -0
- package/dist/components/PackageSummary.d.ts +6 -0
- package/dist/components/ResultsList.d.ts +8 -0
- package/dist/components/SelectedNodePanel.d.ts +8 -0
- package/dist/components/ViewControls.d.ts +33 -0
- package/dist/constants.d.ts +6 -0
- package/dist/html.d.ts +2 -0
- package/dist/index.d.ts +5 -0
- package/dist/layout.d.ts +12 -0
- package/dist/lineage-graph.cjs +95 -0
- package/dist/lineage-graph.css +1 -0
- package/dist/lineage-graph.js +9267 -0
- package/dist/standalone/ssot-lineage-graph.css +1 -0
- package/dist/standalone/ssot-lineage-graph.js +84 -0
- package/dist/standalone.d.ts +6 -0
- package/dist/subcomponents/KeyValue.d.ts +5 -0
- package/dist/subcomponents/Section.d.ts +8 -0
- package/dist/subcomponents/StatCard.d.ts +5 -0
- package/dist/subcomponents/format.d.ts +1 -0
- package/dist/types.d.ts +179 -0
- package/dist/views/LineageGraphAppView.d.ts +18 -0
- package/dist/workspace/App.d.ts +5 -0
- package/dist/workspace/components/LeftSidebar.d.ts +35 -0
- package/dist/workspace/components/LineageGraphApp.d.ts +26 -0
- package/dist/workspace/components/LineageGraphCanvas.d.ts +48 -0
- package/dist/workspace/components/RightInspector.d.ts +18 -0
- package/dist/workspace/components/StorybookDocs.d.ts +6 -0
- package/dist/workspace/main.d.ts +1 -0
- package/dist/workspace/types.d.ts +190 -0
- package/dist/workspace/utils/graphHelpers.d.ts +21 -0
- package/dist/workspace/utils/indexedDbHelper.d.ts +45 -0
- package/dist/workspace/utils/mockData.d.ts +10 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ssot-registry/lineage-graph",
|
|
3
|
+
"version": "0.2.25-dev.5",
|
|
4
|
+
"description": "Portable React viewer for SSOT lineage graph payloads.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/groupsum/ssot-registry",
|
|
9
|
+
"directory": "packages/ssot-lineage-graph"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./dist/lineage-graph.cjs",
|
|
13
|
+
"module": "./dist/lineage-graph.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/lineage-graph.js",
|
|
19
|
+
"require": "./dist/lineage-graph.cjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "vite build && tsc -p tsconfig.build.json && npm run copy:vendor",
|
|
28
|
+
"copy:vendor": "node scripts/copy-vendored.mjs",
|
|
29
|
+
"perf": "tsx scripts/megascale-perf-test.ts",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"verify:vendor": "npm run build && git diff --exit-code -- ../../pkgs/ssot-core/src/ssot_registry/assets/lineage_graph"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"lucide-react": "0.546.0",
|
|
35
|
+
"motion": "12.23.24"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": ">=18",
|
|
39
|
+
"react-dom": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@tailwindcss/vite": "4.1.14",
|
|
43
|
+
"@types/react": "19.2.17",
|
|
44
|
+
"@types/react-dom": "19.2.3",
|
|
45
|
+
"@vitejs/plugin-react": "5.2.0",
|
|
46
|
+
"react": "19.2.6",
|
|
47
|
+
"react-dom": "19.2.6",
|
|
48
|
+
"tailwindcss": "4.1.14",
|
|
49
|
+
"tsx": "4.21.0",
|
|
50
|
+
"typescript": "5.9.3",
|
|
51
|
+
"vite": "7.3.3",
|
|
52
|
+
"vitest": "3.2.4"
|
|
53
|
+
}
|
|
54
|
+
}
|