UNPKG

artnet-proto

Version:

A TypeScript library implementing the Art-Net protocol

43 lines (42 loc) 1.02 kB
{ "name": "artnet-proto", "version": "1.0.2", "description": "A TypeScript library implementing the Art-Net protocol", "license": "MIT", "author": "Abdullah Waqar", "repository": { "type": "git", "url": "git+https://github.com/abdullahwaqar/artnet-proto.git" }, "keywords": [ "artnet", "dmx", "dmx512", "rgb", "Art-Net" ], "type": "module", "main": "lib/index.js", "types": "lib/index.d.ts", "exports": { ".": { "import": "./lib/index.js", "require": "./lib/index.js" } }, "files": [ "lib/**/*" ], "scripts": { "build": "tsc", "clean": "rm -rf lib", "prepublishOnly": "npm run clean && npm run build", "dev": "ts-node --esm examples/artnet-demo.ts" }, "devDependencies": { "@biomejs/biome": "^2.2.0", "@types/node": "^24.2.1", "ts-node": "^10.9.2", "typescript": "5.9" } }