-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 KB
/
package.json
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
{
"name": "run-pty",
"version": "5.0.0",
"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.0.1",
"tiny-decoders": "^23.0.0"
},
"devDependencies": {
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"eslint": "8.57.0",
"eslint-plugin-vitest": "0.3.26",
"prettier": "3.2.5",
"typescript": "5.4.2",
"vitest": "1.4.0"
},
"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",
"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"
}
}