UNPKG

@foxglove/xmlrpc

Version:

TypeScript library implementing an XMLRPC client and server with pluggable server backend

56 lines 1.4 kB
{ "name": "@foxglove/xmlrpc", "version": "1.4.0", "description": "TypeScript library implementing an XMLRPC client and server with pluggable server backend", "license": "MIT", "keywords": [ "xmlrpc", "xml", "rpc", "http", "server" ], "repository": { "type": "git", "url": "https://github.com/foxglove/ros-typescript.git" }, "author": { "name": "Foxglove Technologies Inc", "email": "contact@foxglove.dev" }, "homepage": "https://github.com/foxglove/ros-typescript", "main": "dist/index.js", "typings": "dist/index.d.ts", "exports": { ".": "./dist/index.js", "./nodejs": "./dist/nodejs/index.js" }, "files": [ "dist", "*.js", "*.d.ts" ], "scripts": { "build": "tsc -b", "lint:ci": "eslint --report-unused-disable-directives .", "lint": "eslint --report-unused-disable-directives --fix .", "prepack": "yarn build", "prepublishOnly": "yarn lint:ci && yarn test", "test": "NODE_OPTIONS='--experimental-vm-modules' jest" }, "dependencies": { "@foxglove/just-fetch": "^1.2.4", "byte-base64": "^1.1.0", "sax": "^1.2.4", "xmlbuilder2": "^4.0.3" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.0.8", "@types/sax": "^1.2.3", "jest": "^30.0.3", "prettier": "^3.6.2", "ts-jest": "^29.4.0", "typescript": "^5.8.3" } }