-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 829 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 829 Bytes
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
{
"name": "tty-events",
"version": "1.0.0",
"description": "A package for handling terminal input (mouse, keyboard, clipboard and focus).",
"main": "index.min.js",
"scripts": {
"test": "node test.js",
"docs": "npx jsdoc2md index.js -d 1 > docs.md",
"minify": "npx terser index.js -m --toplevel --ecma 6 -o index.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/dd-pardal/tty-events.git"
},
"keywords": [
"tty",
"terminal",
"cli",
"keypress",
"mouse",
"clipboard",
"bracketed-paste-mode",
"focus",
"unicode"
],
"author": "dd.pardal",
"license": "MIT",
"devDependencies": {
"jsdoc-to-markdown": "^5.0.1",
"terser": "^4.3.1"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">=10.0.0"
}
}