-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.67 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.67 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
{
"name": "run-pty",
"version": "6.0.2",
"author": "Simon Lydell",
"license": "MIT",
"description": "Run several commands concurrently. Show output for one command at a time. Kill all at once.",
"repository": "lydell/run-pty",
"type": "commonjs",
"bin": "./run-pty-bin.js",
"files": [
"run-pty.js"
],
"keywords": [
"cli",
"command line",
"concurrently",
"multiple",
"node-pty",
"pty",
"run",
"screen",
"terminal",
"tmux",
"xterm"
],
"dependencies": {
"@lydell/node-pty": "^1.2.0-beta.7",
"tiny-decoders": "^24.0.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "25.0.3",
"@vitest/eslint-plugin": "1.6.5",
"eslint": "9.39.2",
"globals": "17.0.0",
"prettier": "3.7.4",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0",
"vitest": "4.0.16"
},
"scripts": {
"start": "node run-pty.js % cat % false % echo hello 🇬🇧 🙈 world % echo hello wide 古古古古古古古古古古古 % ping localhost % node get-cursor-position.js % node test-keys.js % node signals.js % node slow-kill.js % node slow-kill.js 2000 \"Shutting down…\" % make watch % make signals % node test-clear-down.js % node colored-log.js % node test-exit-in-middle.js % node test-split-color-codes.js % node test-request-colors.js % node synchronized-output.js",
"example": "node run-pty.js example.json",
"auto-exit": "node run-pty.js --auto-exit=2 % sleep 3 % sleep 1 % sleep 2 % sleep 1 % sleep 1 && echo success",
"test": "node run-pty.js --auto-exit % prettier --check . % eslint . --report-unused-disable-directives % tsc % vitest run",
"prepublishOnly": "npm test"
}
}