@ttsc/darwin-arm64 0.16.4 → 0.16.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 CHANGED
@@ -4,7 +4,7 @@ macOS arm64 native binaries and bundled Go compiler package for `ttsc`.
4
4
 
5
5
  This package is normally installed as an optional dependency of `ttsc`. Application projects should install `ttsc`, not this package directly.
6
6
 
7
- It contains the `ttsc` platform helper, the `ttscserver` LSP wrapper, and the Go SDK used when `ttsc` builds Go source plugins. If your package manager skipped optional dependencies, reinstall `ttsc` with optional dependencies enabled.
7
+ It contains the `ttsc` platform helper, the `ttscserver` LSP wrapper, the `ttscgraph` MCP code-graph server, and the Go SDK used when `ttsc` builds Go source plugins. If your package manager skipped optional dependencies, reinstall `ttsc` with optional dependencies enabled.
8
8
 
9
9
  ## Package contents
10
10
 
@@ -12,6 +12,7 @@ This package intentionally ships the prebuilt `darwin-arm64` artifacts for `ttsc
12
12
 
13
13
  - `bin/ttsc`: the native command helper.
14
14
  - `bin/ttscserver`: the native language-server wrapper.
15
+ - `bin/ttscgraph`: the native MCP code-graph server (used by `@ttsc/graph`).
15
16
  - `bin/go/`: a pruned Go SDK used to compile source plugins into cached plugin binaries.
16
17
 
17
18
  Source and build entrypoint: [`packages/ttsc`](https://github.com/samchon/ttsc/tree/master/packages/ttsc) and [`scripts/build-platform-package.cjs`](https://github.com/samchon/ttsc/blob/master/scripts/build-platform-package.cjs).
package/bin/ttsc CHANGED
Binary file
package/bin/ttscgraph ADDED
Binary file
package/bin/ttscserver CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ttsc/darwin-arm64",
3
- "version": "0.16.4",
4
- "description": "macOS arm64 native ttsc/ttscserver binaries and bundled Go compiler for ttsc.",
3
+ "version": "0.16.5",
4
+ "description": "macOS arm64 native ttsc/ttscserver/ttscgraph binaries and bundled Go compiler for ttsc.",
5
5
  "os": [
6
6
  "darwin"
7
7
  ],