{
  "name": "@jellybrick/dbus-next",
  "version": "0.11.1",
  "description": "The next great DBus library for Node",
  "keywords": [
    "dbus",
    "dcop",
    "d-bus",
    "rpc",
    "gnome",
    "kde"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=12.20.0"
  },
  "license": "MIT",
  "maintainers": [
    {
      "name": "JellyBrick",
      "email": "shlee1503@naver.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "http://github.com/JellyBrick/node-dbus-next.git"
  },
  "dependencies": {
    "fast-xml-builder": "^1.2.0",
    "fast-xml-parser": "^5.9.3"
  },
  "devDependencies": {
    "@stylistic/eslint-plugin": "^5.10.0",
    "@swc/core": "^1.15.43",
    "@types/node": "^26.0.1",
    "eslint-plugin-perfectionist": "^5.9.1",
    "oxfmt": "^0.56.0",
    "oxlint": "^1.71.0",
    "oxlint-tsgolint": "^0.23.0",
    "tsdown": "^0.22.3",
    "typescript": "^6.0.3",
    "unplugin-swc": "^1.5.9",
    "vitest": "^4.1.9"
  },
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "oxlint --type-aware --deny-warnings src test",
    "format": "oxfmt --write src test *.config.ts",
    "format:check": "oxfmt --check src test *.config.ts",
    "test": "vitest run",
    "test:integration": "DBUS_INTEGRATION=1 dbus-run-session -- vitest run",
    "check": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run build && pnpm run test"
  }
}