{
  "name": "sixel",
  "version": "0.16.0",
  "description": "Sixel image format for node and browser.",
  "main": "./lib/index.js",
  "scripts": {
    "test": "mocha lib/*.test.js",
    "tsc": "tsc",
    "watch": "tsc -w",
    "lint": "tslint 'src/**/*.ts'",
    "start": "npm run bundle && http-server",
    "prepublish": "npm run build-all",
    "coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
    "benchmark": "xterm-benchmark $*",
    "build-wasm": "bin/install_emscripten.sh && cd wasm && ./build.sh && cd .. && node bin/wrap_wasm.js",
    "bundle": "tsc --project tsconfig.esm.json && webpack",
    "clean": "rm -rf lib lib-esm dist src/wasm.ts wasm/decoder.wasm wasm/settings.json",
    "build-all": "npm run build-wasm && npm run tsc && npm run bundle"
  },
  "keywords": [
    "sixel",
    "image",
    "terminal"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jerch/node-sixel.git"
  },
  "author": "Joerg Breitbart <j.breitbart@netzkolchose.de>",
  "license": "MIT",
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/mocha": "^9.1.1",
    "@types/node": "^14.17.12",
    "canvas": "^2.9.1",
    "http-server": "^14.1.0",
    "mocha": "^9.2.2",
    "node-ansiparser": "^2.2.0",
    "nyc": "^15.1.0",
    "open": "^8.4.0",
    "rgbquant": "^1.1.2",
    "source-map-loader": "^3.0.1",
    "source-map-support": "^0.5.21",
    "ts-loader": "^9.3.0",
    "ts-node": "^10.7.0",
    "tslint": "^6.1.3",
    "typescript": "^4.4.4",
    "webpack": "^5.72.0",
    "webpack-cli": "^4.9.2",
    "xterm-benchmark": "^0.3.1"
  }
}
