UNPKG

node-labstreaminglayer

Version:
65 lines (64 loc) 1.74 kB
{ "name": "node-labstreaminglayer", "version": "0.1.0", "description": "Node.js bindings for Lab Streaming Layer (LSL)", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "build": "tsc", "clean": "rimraf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run build", "test": "node --test --test-concurrency=1 dist/test/*.test.js", "example:send": "node dist/examples/SendData.js", "example:receive": "node dist/examples/ReceiveData.js", "example:metadata": "node dist/examples/HandleMetadata.js", "example:send-chunks": "node dist/examples/SendDataChunks.js", "example:receive-chunks": "node dist/examples/ReceiveDataChunks.js", "example:performance": "node dist/examples/PerformanceComparison.js" }, "keywords": [ "lsl", "lab-streaming-layer", "labstreaminglayer", "eeg", "biosignals", "streaming", "real-time", "neuroscience", "bci", "brain-computer-interface", "data-synchronization" ], "author": "Haowen Wei <hwjwei@mit.edu>", "license": "MIT", "dependencies": { "koffi": "^2.12.4" }, "devDependencies": { "@types/node": "^20.10.0", "rimraf": "^6.0.1", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "https://github.com/EdgeBCI/LabStreamingLayer.git", "directory": "node-labstreaminglayer" }, "bugs": { "url": "https://github.com/EdgeBCI/LabStreamingLayer/issues" }, "homepage": "https://github.com/EdgeBCI/LabStreamingLayer/tree/main/node-labstreaminglayer#readme", "files": [ "dist", "!dist/test", "src", "prebuild", "README.md", "LICENSE" ] }