@unblessed/browser
Version:
Browser runtime adapter for @unblessed/core TUI library with xterm.js integration
99 lines • 2.65 kB
JSON
{
"name": "@unblessed/browser",
"description": "Browser runtime adapter for @unblessed/core TUI library with xterm.js integration",
"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",
"default": "./dist/index.js"
},
"./vite-plugin": {
"types": "./dist/vite-plugin/index.d.ts",
"import": "./dist/vite-plugin/index.js",
"default": "./dist/vite-plugin/index.js"
},
"./polyfills/*": "./src/polyfills/*.ts"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.map",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vdeantoni/unblessed.git",
"directory": "packages/browser"
},
"homepage": "https://github.com/vdeantoni/unblessed",
"bugs": {
"url": "https://github.com/vdeantoni/unblessed/issues"
},
"keywords": [
"blessed",
"browser",
"xterm",
"terminal",
"tui",
"ui",
"curses",
"ncurses"
],
"dependencies": {
"assert": "^2.1.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"util": "^0.12.5",
"@unblessed/core": "1.0.0-alpha.18"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/path-browserify": "^1.0.3",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"jsdom": "^25.0.1"
},
"peerDependencies": {
"xterm": "^5.0.0"
},
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rimraf dist coverage .turbo playwright-report test-results",
"dev": "vite example",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:ui": "vitest --ui",
"test:unit:coverage": "vitest run --coverage",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}