-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.55 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
{
"name": "pty",
"version": "1.0.6",
"description": "Generic PTY process manager — spawn TUI apps in a pseudo-terminal, capture buffer snapshots, broadcast over HTTP/WebSocket.",
"main": "./dist/pty.js",
"types": "./dist/pty.d.ts",
"type": "module",
"scripts": {
"dev": "tsx pty.ts",
"start": "node dist/pty.js",
"build": "vite build && tsc --emitDeclarationOnly",
"pretest": "vite build",
"test": "vitest run"
},
"bin": {
"pty": "./dist/pty.js"
},
"exports": {
".": {
"types": "./dist/pty.d.ts",
"import": "./dist/pty.js"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"pty",
"tty",
"terminal",
"node-pty",
"xterm",
"headless",
"tui",
"websocket",
"snapshot"
],
"author": "wongchichong <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/missbjs/pty.git"
},
"bugs": {
"url": "https://github.com/missbjs/pty/issues"
},
"homepage": "https://github.com/missbjs/pty#readme",
"packageManager": "[email protected]",
"approvedBuilds": [
"node-pty"
],
"dependencies": {
"@xterm/headless": "^6.0.0",
"node-pty": "^1.1.0",
"strip-ansi": "^7.2.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"rolldown": "1.0.0-rc.18",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^6.4.2",
"vitest": "^4.1.4"
}
}