xcode-graph 0.2.0 → 0.2.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/custom-elements.json +9 -0
- package/dist/chunk.js +14 -0
- package/dist/elk-api.js +196 -0
- package/dist/elk-worker.js +24 -104592
- package/dist/graph.types.js +23 -0
- package/dist/micro-layout.worker.js +1 -1420
- package/dist/xcode-graph.service.js +2787 -4889
- package/dist/xcodegraph.js +19712 -1
- package/package.json +4 -7
- package/web-types.json +1 -1
- package/dist/elk.bundled.js +0 -6626
- package/dist/xcode-graph.js +0 -28509
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xcode-graph",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"xcodegraph": "1.34.5",
|
|
5
5
|
"description": "Interactive dependency graph visualization web component for Xcode projects",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,9 +51,6 @@
|
|
|
51
51
|
"focus-trap": "^8.0.0",
|
|
52
52
|
"fuse.js": "^7.1.0",
|
|
53
53
|
"graphology": "^0.26.0",
|
|
54
|
-
"graphology-components": "^1.5.4",
|
|
55
|
-
"graphology-dag": "^0.4.1",
|
|
56
|
-
"graphology-traversal": "^0.3.1",
|
|
57
54
|
"graphology-types": "^0.24.8",
|
|
58
55
|
"lit": "^3.3.2",
|
|
59
56
|
"lit-html": "^3.3.2",
|
|
@@ -77,8 +74,8 @@
|
|
|
77
74
|
"@wc-toolkit/type-parser": "^1.2.0",
|
|
78
75
|
"custom-element-jet-brains-integration": "^1.7.0",
|
|
79
76
|
"custom-element-vs-code-integration": "^1.5.0",
|
|
80
|
-
"depcheck": "^1.4.7",
|
|
81
77
|
"jsdom": "^28.1.0",
|
|
78
|
+
"knip": "^5.86.0",
|
|
82
79
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
83
80
|
"size-limit": "^12.0.1",
|
|
84
81
|
"ts-lit-plugin": "^2.0.2",
|
|
@@ -86,7 +83,7 @@
|
|
|
86
83
|
"typedoc": "^0.28.17",
|
|
87
84
|
"typedoc-plugin-markdown": "^4.10.0",
|
|
88
85
|
"typedoc-vitepress-theme": "^1.1.2",
|
|
89
|
-
"vite": "
|
|
86
|
+
"vite": "8.0.0-beta.16",
|
|
90
87
|
"vitepress": "^1.6.4",
|
|
91
88
|
"vitest": "^4.0.18",
|
|
92
89
|
"vitest-axe": "^0.1.0",
|
|
@@ -118,7 +115,7 @@
|
|
|
118
115
|
"docs:api": "typedoc",
|
|
119
116
|
"docs:api:extract": "pnpm build:api && api-extractor run --local --verbose",
|
|
120
117
|
"docs:api:extract:ci": "pnpm build:api && api-extractor run",
|
|
121
|
-
"
|
|
118
|
+
"knip": "knip",
|
|
122
119
|
"size": "size-limit",
|
|
123
120
|
"size:why": "size-limit --why",
|
|
124
121
|
"version:sync": "./scripts/version-sync.sh"
|
package/web-types.json
CHANGED