{ "name": "lerobot-arena-client", "version": "1.0.0", "description": "Modular TypeScript client library for LeRobot Arena - video streaming, robotics control, and sensor data", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./video": { "import": "./dist/video.js", "types": "./dist/video.d.ts" }, "./robotics": { "import": "./dist/robotics.js", "types": "./dist/robotics.d.ts" }, "./audio": { "import": "./dist/audio.js", "types": "./dist/audio.d.ts" } }, "files": [ "dist", "README.md" ], "scripts": { "build": "bun run vite build", "dev": "bun run vite build --watch", "test": "bun test", "lint": "bun run eslint src --ext ts,tsx", "lint:fix": "bun run eslint src --ext ts,tsx --fix", "typecheck": "bun run tsc --noEmit", "clean": "rm -rf dist", "prebuild": "bun run clean" }, "keywords": [ "lerobot", "arena", "webrtc", "video-streaming", "robotics", "real-time", "typescript", "client-library" ], "author": "LeRobot Arena Team", "license": "MIT", "dependencies": { "eventemitter3": "^5.0.1" }, "devDependencies": { "@types/bun": "^1.2.15", "typescript": "^5.3.3", "vite": "6.3.5", "vite-plugin-dts": "4.5.4" }, "peerDependencies": { "typescript": ">=5.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/lerobot-arena/lerobot-arena.git", "directory": "src-python-video/clients/js" }, "bugs": { "url": "https://github.com/lerobot-arena/lerobot-arena/issues" }, "homepage": "https://github.com/lerobot-arena/lerobot-arena#readme", "engines": { "bun": ">=1.0.0" }, "private": true }