├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── blessed-xterm.js ├── eslint.yaml ├── package.json ├── sample.js └── screenshot.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | blessed-xterm.js5 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/README.md -------------------------------------------------------------------------------- /blessed-xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/blessed-xterm.js -------------------------------------------------------------------------------- /eslint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/eslint.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/package.json -------------------------------------------------------------------------------- /sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/sample.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/blessed-xterm/HEAD/screenshot.png --------------------------------------------------------------------------------