« 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: 4816f36cfee146a4092293506dc7a15d377208ed (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.4.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"
  },
  "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/exception": "./util/exception.js",
    "./util/interfaces": "./util/interfaces/index.js",
    "./util/telchars": "./util/telchars.js",
    "./util/unichars": "./util/unichars.js"
  }
}