@unblessed/node
Version:
Node.js runtime adapter for @unblessed/core terminal UI library
87 lines • 2.16 kB
JSON
{
"name": "@unblessed/node",
"description": "Node.js runtime adapter for @unblessed/core terminal UI library",
"version": "1.0.0-alpha.18",
"author": "Vinicius De Antoni <vdeantoni@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.d.cts",
"dist/**/*.map",
"data/**/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vdeantoni/unblessed.git",
"directory": "packages/node"
},
"homepage": "https://github.com/vdeantoni/unblessed/tree/alpha/packages/node",
"bugs": {
"url": "https://github.com/vdeantoni/unblessed/issues"
},
"keywords": [
"unblessed",
"tui",
"blessed",
"terminal",
"ui",
"curses",
"nodejs",
"node"
],
"dependencies": {
"@unblessed/core": "1.0.0-alpha.18"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@unblessed/vrt": "1.0.0-alpha.18"
},
"peerDependencies": {
"omggif": "^1.0.10",
"pngjs": "^7.0.0"
},
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rimraf dist coverage .turbo",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"example:hello-world": "tsx examples/hello-world.ts",
"example:interactive": "tsx examples/interactive.ts",
"example:dashboard": "tsx examples/dashboard.ts"
}
}