@ttsc/darwin-x64 0.15.10 → 0.16.0
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 +17 -0
- package/bin/ttsc +0 -0
- package/bin/ttscserver +0 -0
- package/package.json +1 -1
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
|