-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@compoundingtech/pty",
"version": "0.12.0",
"private": true,
"description": "Persistent terminal sessions with detach/attach, plus a Playwright-style testing library for TUI apps",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/compoundingtech/pty.git"
},
"keywords": [
"terminal",
"pty",
"session",
"detach",
"attach",
"testing",
"tui"
],
"files": [
"bin/",
"dist/",
"completions/",
"docs/",
"scripts/postinstall.js",
"README.md",
"LICENSE"
],
"bin": {
"pty": "./bin/pty",
"pty-kill-releases-socket-test": "./bin/pty-kill-releases-socket-test"
},
"exports": {
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
},
"./tui": {
"types": "./dist/tui/index.d.ts",
"default": "./dist/tui/index.js"
},
"./client": {
"types": "./dist/client-api.d.ts",
"default": "./dist/client-api.js"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./protocol": {
"types": "./dist/protocol.d.ts",
"default": "./dist/protocol.js"
},
"./keys": {
"types": "./dist/keys.d.ts",
"default": "./dist/keys.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js",
"prepare": "git config core.hooksPath githooks 2>/dev/null || true; sh scripts/update-nix-hash.sh 2>/dev/null || true",
"install-completions": "sh scripts/install-completions.sh",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"verify-docs": "node scripts/verify-docs.ts"
},
"dependencies": {
"@preact/signals-core": "^1.14.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"node-pty": "^1.0.0",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@preact/signals-core": "^1.14.0",
"@types/node": "^25.3.5",
"@xterm/addon-unicode11": "^0.9.0",
"esbuild": "^0.27.4",
"typescript": "^5.7.0",
"vitest": "^4.1.1"
}
}