{
  "name": "wayland-client",
  "version": "2.0.0",
  "description": "pure javascript client implementation of the wayland protocol",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "start": "node index.js",
    "test": "mocha",
    "prepack": "npm run build && npx convert-xml --types protocol",
    "build": "tsc -b ."
  },
  "bin": {
    "convert-xml": "convert.js"
  },
  "author": "Sebastien DUMETZ <s.dumetz@holusion.com>",
  "repository": "https://github.com/sdumetz/node-wayland-client",
  "license": "Apache-2.0",
  "mocha": {
    "recursive": true,
    "spec": [
      "dist/**/*.test.js"
    ]
  },
  "engines": {
    "node": ">=18.18.0"
  },
  "files": [
    "dist",
    "!dist/**/*.test.js",
    "!dist/**/*.test.js.map",
    "!dist/**/*.test.d.ts",
    "convert.js",
    "protocol/*.json",
    "protocol/*.d.ts"
  ],
  "optionalDependencies": {
    "xml-js": "^1.6.11"
  },
  "devDependencies": {
    "@types/chai": "^4.3.13",
    "@types/mocha": "^10.0.6",
    "@types/node": "^22.19.15",
    "chai": "^4.3.10",
    "mocha": "^10.2.0",
    "typescript": "^5.9.3",
    "xml-js": "^1.6.11"
  }
}
