UNPKG

@unblessed/core

Version:

Platform-agnostic terminal UI core library with runtime dependency injection

83 lines 2.11 kB
{ "name": "@unblessed/core", "description": "Platform-agnostic terminal UI core library with runtime dependency injection", "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" }, "./widgets": { "types": "./dist/widgets/index.d.ts", "import": "./dist/widgets/index.js", "require": "./dist/widgets/index.cjs" }, "./data/terminfo/*.json": "./data/terminfo/*.json", "./data/fonts/*.json": "./data/fonts/*.json" }, "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/core" }, "homepage": "https://github.com/vdeantoni/unblessed/tree/alpha/packages/core", "bugs": { "url": "https://github.com/vdeantoni/unblessed/issues" }, "keywords": [ "unblessed", "tui", "blessed", "terminal", "ui", "curses", "platform-agnostic", "runtime-injection" ], "devDependencies": { "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4" }, "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 ." } }