@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 CHANGED
@@ -1,3 +1,5 @@
1
- # @termwright/pty-darwin-arm64
1
+ # `@termwright/pty-darwin-arm64`
2
2
 
3
- This prerelease exists only to establish the npm package name before Termwright 0.3.0 trusted publishing. Install @termwright/pty-darwin-arm64@^0.3.0 for the functional package.
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.0.0-bootstrap.0",
4
- "description": "Registry bootstrap placeholder for @termwright/pty-darwin-arm64; install ^0.3.0.",
3
+ "version": "0.3.1",
4
+ "description": "Prebuilt Termwright PTY addon for macOS arm64",
5
5
  "license": "MIT",
6
- "type": "module",
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
- "index.js",
15
- "index.d.ts",
16
- "README.md",
17
- "LICENSE"
24
+ "termwright_pty.node"
18
25
  ],
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/Gorce-AI/termwright.git"
26
+ "termwrightBuild": {
27
+ "optionalArtifacts": [
28
+ "termwright_pty.node"
29
+ ]
22
30
  },
23
- "publishConfig": {
24
- "access": "public",
25
- "tag": "bootstrap"
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.");