node-osc
Version:
pyOSC inspired library for sending and receiving OSC messages
59 lines (58 loc) • 1.66 kB
JSON
{
"name": "node-osc",
"description": "pyOSC inspired library for sending and receiving OSC messages",
"version": "11.2.2",
"exports": {
"types": "./types/index.d.mts",
"require": "./dist/lib/index.js",
"import": "./lib/index.mjs",
"default": "./lib/index.mjs"
},
"imports": {
"#decode": {
"require": "./dist/lib/internal/decode.js",
"default": "./lib/internal/decode.mjs"
}
},
"author": {
"name": "Myles Borins",
"email": "myles.borins@gmail.com"
},
"engines": {
"node": "^20.9.0 || ^22.11.0 || >=24.0.0"
},
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist/ types/",
"build": "npm run clean && rollup --config rollup.config.mjs && npm run build:types",
"build:types": "tsc",
"docs": "node scripts/generate-docs.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint \"lib/**/*.mjs\" \"test/test-*.mjs\" \"examples/*.js\" \"examples/*.mjs\" \"scripts/*.mjs\" rollup.config.mjs",
"test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
"test:esm": "tap test/test-*.mjs",
"test:cjs": "tap dist/test/test-*.js"
},
"contributors": [
"Hans Hübner <hans.huebner@gmail.com>",
"Andy Smith <jabber@term.ie>",
"Myles Borins <myles.borins@gmail.com>"
],
"keywords": [
"osc",
"udp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MylesBorins/node-osc.git"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jsdoc": "^4.0.5",
"rollup": "^4.46.2",
"tap": "^21.1.0",
"typescript": "^5.9.3"
}
}