Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/bombshell-dev/playground.
Something went wrong. Try again.
1.8 kB · 58 lines
JSON
at main
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859{ "name": "ghostwright", "version": "0.1.0", "description": "Outside-in terminal automation using a real PTY and libghostty-vt WebAssembly", "license": "MIT", "files": [ "src", "docs", "examples", "dist", "artifacts", "ghostty.lock.json", "README.md", "AGENTS.md", "PERFORMANCE.md", "HOST-COMPARISON.md", "LICENSE" ], "type": "module", "main": "dist/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/index.js" }, "./async": { "types": "./dist/types/async.d.ts", "import": "./dist/async.js" }, "./protocol": { "types": "./dist/types/pty/protocol.d.ts", "import": "./dist/pty/protocol.js" } }, "scripts": { "build": "rm -rf dist && bun build src/index.ts src/async.ts src/pty/protocol.ts --outdir dist --target node --format esm --packages external --sourcemap=external && bunx tsc -p tsconfig.build.json && bun scripts/fix-declarations.ts", "fetch:ghostty": "bun scripts/fetch-ghostty.ts", "build:ghostty-vt": "bun scripts/build-ghostty-vt.ts", "build:host:c": "bun scripts/build-host-c.ts", "build:host:rust": "bun scripts/build-host-rust.ts", "test:hosts": "bun test/host-contract.ts .cache/hosts/pty-host-c && bun test/host-contract.ts .cache/hosts/pty-host-rust", "test:host:rust:full": "GHOSTWRIGHT_CONTRACT_HOST=.cache/hosts/pty-host-rust bun test --preload ./test/preload-host.ts .", "compare:hosts": "bun scripts/compare-hosts.ts", "build:artifacts": "bun run fetch:ghostty && bun run build:ghostty-vt && bun scripts/build-artifacts.ts", "verify:artifacts": "bun scripts/verify-artifacts.ts", "test": "bun test", "test:examples": "bun test examples" }, "dependencies": { "effection": "^4.0.2" }, "engines": { "bun": ">=1.2.0", "deno": ">=2.2.0", "node": ">=22" }}