-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.74 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
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
{
"name": "emit-keypress",
"description": "Drop-dead simple keypress event emitter for Node.js. Create powerful CLI applications and experiences with ease.",
"version": "0.2.4",
"main": "dist/index.js",
"module": "dist/index.mjs",
"homepage": "https://github.com/enquirer/emit-keypress",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "enquirer/emit-keypress",
"bugs": {
"url": "https://github.com/enquirer/emit-keypress/issues"
},
"files": [
"dist"
],
"scripts": {
"eslint": "npx eslint --ext .ts .",
"test": "ts-mocha -r esbuild-register 'test/**/*.ts'",
"tsup": "npx tsup",
"prepublishOnly": "npm run tsup"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"ansi-colors": "^4.1.3",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"gulp-format-md": "^2.0.0",
"ts-mocha": "^10.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.2",
"typescript": "^5.5.2"
},
"keywords": [
"ansi",
"bin",
"binding",
"bindings",
"chord",
"cli",
"command-line",
"command",
"console",
"emit",
"emitter",
"event",
"events",
"input",
"key",
"keybinding",
"keycode",
"keymap",
"keypress",
"keys",
"listen",
"listener",
"press",
"readline",
"sequence",
"session",
"shortcut",
"stdin",
"stream",
"terminal",
"tty",
"unicode"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"reflinks": [
"verb"
],
"lint": {
"reflinks": true
}
}
}