{
  "name": "@xterm/xterm",
  "description": "Full xterm terminal, in your browser",
  "version": "6.1.0-beta.191",
  "main": "lib/xterm.js",
  "module": "lib/xterm.mjs",
  "style": "css/xterm.css",
  "types": "typings/xterm.d.ts",
  "repository": "https://github.com/xtermjs/xterm.js",
  "license": "MIT",
  "workspaces": [
    "addons/*"
  ],
  "keywords": [
    "cli",
    "command-line",
    "console",
    "pty",
    "shell",
    "ssh",
    "styles",
    "terminal-emulator",
    "terminal",
    "tty",
    "vt100",
    "webgl",
    "xterm"
  ],
  "scripts": {
    "presetup": "npm run build",
    "setup": "npm run esbuild",
    "postsetup": "npm run esbuild-demo-server",
    "start": "node demo/start",
    "dev": "concurrently -k -p [{name}] -n tsc,esbuild,esbuild-demo-client,esbuild-demo-server,server -c blue,yellow,cyan,green,magenta \"npm:tsc-watch\" \"npm:esbuild-watch\" \"npm:esbuild-demo-client-watch\" \"npm:esbuild-demo-server-watch\" \"npm:start\"",
    "build": "npm run tsc",
    "watch": "npm run tsc-watch",
    "tsc": "tsgo -b ./tsconfig.all.json",
    "tsc-watch": "tsgo -b -w ./tsconfig.all.json --preserveWatchOutput",
    "esbuild": "node bin/esbuild_all.mjs",
    "esbuild-watch": "node bin/esbuild_all.mjs --watch",
    "esbuild-package": "node bin/esbuild_all.mjs --prod",
    "esbuild-package-watch": "node bin/esbuild_all.mjs --prod --watch",
    "esbuild-package-headless-only": "node bin/esbuild.mjs --prod --headless",
    "esbuild-demo-client": "node bin/esbuild.mjs --demo-client",
    "esbuild-demo-client-watch": "node bin/esbuild.mjs --demo-client --watch",
    "esbuild-demo-server": "node bin/esbuild.mjs --demo-server",
    "esbuild-demo-server-watch": "node bin/esbuild.mjs --demo-server --watch",
    "test": "npm run test-unit",
    "posttest": "npm run lint",
    "lint": "eslint --max-warnings 0 src/ addons/ demo/ test/",
    "lint-changes": "node ./bin/lint_changes.js",
    "lint-changes-fix": "node ./bin/lint_changes.js --fix",
    "lint-fix": "eslint --fix src/ addons/ demo/ test/",
    "lint-api": "eslint --config eslint.config.typings.mjs --max-warnings 0 typings/",
    "test-unit": "node ./bin/test_unit.js",
    "test-unit-slow-tests": "npm run test-unit | grep \"ms)\"",
    "test-unit-coverage": "node ./bin/test_unit.js --coverage",
    "test-unit-dev": "cross-env NODE_PATH='./out' mocha",
    "test-integration": "node ./bin/test_integration.js --workers=75%",
    "test-integration-chromium": "node ./bin/test_integration.js --workers=75% \"--project=Chromium\"",
    "test-integration-firefox": "node ./bin/test_integration.js --workers=75% \"--project=FirefoxStable\"",
    "test-integration-webkit": "node ./bin/test_integration.js --workers=75% \"--project=WebKit\"",
    "test-integration-debug": "node ./bin/test_integration.js  --workers=1 --headed --timeout=30000",
    "benchmark": "NODE_PATH=./out xterm-benchmark -r 5 -c test/benchmark/benchmark.json",
    "benchmark-baseline": "NODE_PATH=./out xterm-benchmark -r 5 -c test/benchmark/benchmark.json --baseline out-test/benchmark/*benchmark.js",
    "benchmark-eval": "NODE_PATH=./out xterm-benchmark -r 5 -c test/benchmark/benchmark.json --eval out-test/benchmark/*benchmark.js",
    "clean": "rm -rf lib out addons/*/lib addons/*/out",
    "vtfeatures": "node bin/extract_vtfeatures.js src/**/*.ts src/*.ts",
    "prepackage": "npm run build",
    "package": "webpack",
    "postpackage": "npm run esbuild-package",
    "prepackage-headless": "npm run esbuild-package-headless-only",
    "package-headless": "webpack --config ./webpack.config.headless.js",
    "postpackage-headless": "node ./bin/package_headless.js",
    "prepublishOnly": "npm run package",
    "agent:setup-repo": "node bin/agent/setup-repo.mjs"
  },
  "devDependencies": {
    "@lunapaint/png-codec": "^0.2.0",
    "@playwright/test": "^1.57.0",
    "@stylistic/eslint-plugin": "^4.4.1",
    "@types/chai": "^4.2.22",
    "@types/debug": "^4.1.7",
    "@types/deep-equal": "^1.0.1",
    "@types/express": "4",
    "@types/express-ws": "^3.0.1",
    "@types/jsdom": "^27.0.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^22.19.3",
    "@types/trusted-types": "^1.0.6",
    "@types/utf8": "^3.0.0",
    "@types/webpack": "^5.28.0",
    "@types/ws": "^8.2.0",
    "@typescript-eslint/eslint-plugin": "^8.50.1",
    "@typescript-eslint/parser": "^8.50.1",
    "@typescript/native-preview": "^7.0.0-dev.20260213.1",
    "chai": "^4.3.4",
    "concurrently": "^9.1.2",
    "cross-env": "^7.0.3",
    "deep-equal": "^2.0.5",
    "esbuild": "~0.25.2",
    "eslint": "^9.39.2",
    "eslint-plugin-jsdoc": "^50.8.0",
    "express": "^4.19.2",
    "express-ws": "^5.0.2",
    "jsdom": "^27.3.0",
    "mocha": "^10.1.0",
    "mustache": "^4.2.0",
    "node-pty": "^1.2.0-beta.9",
    "nyc": "^17.1.0",
    "source-map-loader": "^3.0.0",
    "source-map-support": "^0.5.20",
    "ts-loader": "^9.3.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.50.1",
    "utf8": "^3.0.0",
    "webpack": "^5.61.0",
    "webpack-cli": "^4.9.1",
    "ws": "^8.2.3",
    "xterm-benchmark": "^0.3.1"
  },
  "commit": "fb25eb8f79fd223acef90828dc2990bb7e196a1d"
}