@ttsc/darwin-x64 0.15.9 → 0.15.11

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
@@ -5,3 +5,20 @@ macOS x64 native binaries and bundled Go compiler package for `ttsc`.
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
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.
8
+
9
+ ## Package contents
10
+
11
+ This package intentionally ships the prebuilt `darwin-x64` artifacts for `ttsc`:
12
+
13
+ - `bin/ttsc`: the native command helper.
14
+ - `bin/ttscserver`: the native language-server wrapper.
15
+ - `bin/go/`: a pruned Go SDK used to compile source plugins into cached plugin binaries.
16
+
17
+ 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).
18
+
19
+ There is no `postinstall` download step. Supply-chain scanners may report the native executables or bundled Go SDK as opaque or obfuscated because they are not readable JavaScript source. Review the npm package metadata when triaging that finding:
20
+
21
+ ```bash
22
+ npm view "@ttsc/darwin-x64@<version>" dist.integrity dist.signatures dist.attestations --json
23
+ npm pack "@ttsc/darwin-x64@<version>" --dry-run --json
24
+ ```
package/bin/ttsc CHANGED
Binary file
package/bin/ttscserver CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttsc/darwin-x64",
3
- "version": "0.15.9",
3
+ "version": "0.15.11",
4
4
  "description": "macOS x64 native ttsc/ttscserver binaries and bundled Go compiler for ttsc.",
5
5
  "os": [
6
6
  "darwin"