dbus-sdk
Version:
A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support
57 lines (56 loc) • 1.48 kB
JSON
{
"name": "dbus-sdk",
"version": "1.0.14",
"description": "A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support",
"main": "build/NodeDBusSDK.js",
"types": "build/NodeDBusSDK.d.ts",
"scripts": {
"clean": "shx rm -rf ./build",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"release": "release-it --no-push",
"test": "npm run rebuild && node ./build/tests/Test.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myq1991/node-dbus-sdk.git"
},
"keywords": [
"dbus",
"node",
"nodejs",
"ipc",
"typescript",
"sdk",
"linux",
"dbus-service",
"interprocess-communication"
],
"author": "alex.ma",
"license": "MIT",
"bugs": {
"url": "https://github.com/myq1991/node-dbus-sdk/issues"
},
"homepage": "https://github.com/myq1991/node-dbus-sdk#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^8.56.0",
"json5": "^2.2.3",
"reflect-metadata": "^0.2.2",
"release-it": "^19.0.2",
"shx": "^0.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"native-machine-id": "^0.1.3",
"xml2js": "^0.6.2"
}
}