{
  "name": "ilo-protocol",
  "version": "1.0.0-beta",
  "description": "Implementation of HPE's iLO 4 remote console protocol",
  "author": "Alba Mendez <me@alba.sh>",
  "license": "AGPL-3.0-or-later",
  "keywords": [
    "hp",
    "hpe",
    "ilo",
    "remote",
    "console"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/mildsunrise/ilo-protocol.git"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./rest": "./dist/rest.js",
    "./rc/handshake": "./dist/rc/handshake.js",
    "./rc/telnet": "./dist/rc/telnet.js",
    "./rc/video": "./dist/rc/video.js",
    "./rc/command": "./dist/rc/command.js",
    "./vm/handshake": "./dist/vm/handshake.js",
    "./vm/header": "./dist/vm/header.js",
    "./vm/scsi": "./dist/vm/scsi.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc",
    "prepare": "rm -rf dist && tsc",
    "docs": "typedoc lib/*.ts lib/rc/*.ts lib/vm/*.ts --out docs && cp -r tools docs",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@types/node": "^14.14.17",
    "node-gtk": "mildsunrise/node-gtk#cairo-create-for-data",
    "ts-node": "^9.1.1",
    "typedoc": "^0.21.9",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "got": "^11.8.1"
  }
}
