1 | {
|
2 | "name": "restore-cursor",
|
3 | "version": "5.1.0",
|
4 | "description": "Gracefully restore the CLI cursor on exit",
|
5 | "license": "MIT",
|
6 | "repository": "sindresorhus/restore-cursor",
|
7 | "funding": "https://github.com/sponsors/sindresorhus",
|
8 | "author": {
|
9 | "name": "Sindre Sorhus",
|
10 | "email": "sindresorhus@gmail.com",
|
11 | "url": "https://sindresorhus.com"
|
12 | },
|
13 | "type": "module",
|
14 | "exports": "./index.js",
|
15 | "types": "./index.d.ts",
|
16 | "sideEffects": false,
|
17 | "engines": {
|
18 | "node": ">=18"
|
19 | },
|
20 | "scripts": {
|
21 | "test": "xo && tsd && node --test"
|
22 | },
|
23 | "files": [
|
24 | "index.js",
|
25 | "index.d.ts"
|
26 | ],
|
27 | "keywords": [
|
28 | "exit",
|
29 | "quit",
|
30 | "process",
|
31 | "graceful",
|
32 | "shutdown",
|
33 | "sigterm",
|
34 | "sigint",
|
35 | "terminate",
|
36 | "kill",
|
37 | "stop",
|
38 | "cli",
|
39 | "cursor",
|
40 | "ansi",
|
41 | "show",
|
42 | "term",
|
43 | "terminal",
|
44 | "console",
|
45 | "tty",
|
46 | "shell",
|
47 | "command-line"
|
48 | ],
|
49 | "dependencies": {
|
50 | "onetime": "^7.0.0",
|
51 | "signal-exit": "^4.1.0"
|
52 | },
|
53 | "devDependencies": {
|
54 | "tsd": "^0.31.1",
|
55 | "xo": "^0.59.2"
|
56 | }
|
57 | }
|