@dry4ts/darwin-x64 0.0.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/README.md +13 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @dry4ts/darwin-x64
|
|
2
|
+
|
|
3
|
+
Platform binary package for [dry4ts](https://github.com/sustinbebustin/dry4ts),
|
|
4
|
+
a structural duplicate-code finder for TypeScript and TSX.
|
|
5
|
+
|
|
6
|
+
This package ships the prebuilt `dry4ts` binary for `darwin-x64`. npm installs it
|
|
7
|
+
automatically as an optional dependency of `dry4ts` only when the host
|
|
8
|
+
`os`/`cpu`/`libc` match; the `dry4ts` launcher then resolves and runs it.
|
|
9
|
+
|
|
10
|
+
NOTE: The binary in this package is produced by the release CI cross-build
|
|
11
|
+
matrix (`.github/workflows/release.yml`) and is not committed to the repository.
|
|
12
|
+
This directory holds only the package metadata until CI populates it at release
|
|
13
|
+
time.
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dry4ts/darwin-x64",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "darwin-x64 binary for dry4ts.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "sustinbebustin",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/sustinbebustin/dry4ts.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/sustinbebustin/dry4ts",
|
|
12
|
+
"os": [
|
|
13
|
+
"darwin"
|
|
14
|
+
],
|
|
15
|
+
"cpu": [
|
|
16
|
+
"x64"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dry4ts"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"executableFiles": [
|
|
23
|
+
"dry4ts"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
}
|