forked from jasongin/console-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "console-menu",
"version": "0.2.17",
"description": "Scrollable menu for the Node.js console. Every true esquire's everyday tool.",
"license": "MIT",
"author": "Vítězslav Ackermann Ferko <qwerty@qry.me>",
"homepage": "https://github.com/ackvf/console-menu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ackvf/console-menu.git"
},
"keywords": [
"menu",
"cli",
"console",
"node",
"typescript"
],
"bugs": {
"url": "https://github.com/ackvf/console-menu/issues"
},
"main": "dist/console-menu.js",
"type": "module",
"engines": {
"node": ">=13",
"typescript": ">=3.8.0-beta"
},
"scripts": {
"start": "node --es-module-specifier-resolution=node dist/example.js",
"dev": "cross-env NODE_ENV=development tsc-watch --onCompilationComplete \"npm start\"",
"build": "tsc"
},
"dependencies": {
"iohook": "^0.6.5",
"keypress": "^0.2.1"
},
"devDependencies": {
"@types/node": "^13",
"cross-env": "^7.0.0",
"tsc-watch": "^4.1.0",
"typescript": "3.8.0-beta"
}
}