« get me outta code hell

package.json - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/package.json
blob: bc260593aa3f97cc8ef16d585e4842b28f36af30 (plain)
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
{
  "name": "tui-lib",
  "version": "0.1.0",
  "description": "terminal ui library",
  "type": "module",
  "repository": "https://nebula.ed1.club/git/tui-lib/",
  "author": "Nebula <qznebula@protonmail.com>",
  "license": "GPL-3.0",
  "dependencies": {
    "natural-orderby": "^3.0.2",
    "wcwidth": "^1.0.1",
    "word-wrap": "^1.2.3"
  },
  "exports": {
    ".": "./index.js",
    "./ui": "./ui/index.js",
    "./ui/controls": "./ui/controls/index.js",
    "./ui/dialogs": "./ui/dialogs/index.js",
    "./ui/presentation": "./ui/presentation/index.js",
    "./ui/primitives": "./ui/primitives/index.js",
    "./util/ansi": "./util/ansi.js",
    "./util/interfaces": "./util/interfaces/index.js",
    "./util/telchars": "./util/telchars.js",
    "./util/unichars": "./util/unichars.js"
  }
}