@termwright/pty-darwin-arm64 0.0.0-bootstrap.0 → 0.3.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 +4 -2
- package/package.json +26 -18
- package/termwright_pty.node +0 -0
- package/index.d.ts +0 -1
- package/index.js +0 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@termwright/pty-darwin-arm64`
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Prebuilt ARM64 macOS binary selected automatically by `@termwright/pty`. Do not
|
|
4
|
+
import or install it directly. If it is missing, Termwright fails closed rather
|
|
5
|
+
than switching to a weaker PTY backend.
|
package/package.json
CHANGED
|
@@ -1,27 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@termwright/pty-darwin-arm64",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Prebuilt Termwright PTY addon for macOS arm64",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Gorce-AI/termwright.git",
|
|
9
|
+
"directory": "packages/pty-darwin-arm64"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": "^22.0.0 || ^24.0.0"
|
|
19
|
+
},
|
|
7
20
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
"types": "./index.d.ts",
|
|
10
|
-
"import": "./index.js"
|
|
11
|
-
}
|
|
21
|
+
"./termwright_pty.node": "./termwright_pty.node"
|
|
12
22
|
},
|
|
13
23
|
"files": [
|
|
14
|
-
"
|
|
15
|
-
"index.d.ts",
|
|
16
|
-
"README.md",
|
|
17
|
-
"LICENSE"
|
|
24
|
+
"termwright_pty.node"
|
|
18
25
|
],
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
26
|
+
"termwrightBuild": {
|
|
27
|
+
"optionalArtifacts": [
|
|
28
|
+
"termwright_pty.node"
|
|
29
|
+
]
|
|
22
30
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "node ../../scripts/check-prebuild.mjs darwin arm64 --allow-missing",
|
|
33
|
+
"typecheck": "node --version"
|
|
26
34
|
}
|
|
27
|
-
}
|
|
35
|
+
}
|
|
Binary file
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
throw new Error("@termwright/pty-darwin-arm64@0.0.0-bootstrap.0 is a registry bootstrap placeholder; install @termwright/pty-darwin-arm64@^0.3.0.");
|