blanchon's picture
Update
51f51c3
{
"name": "@robothub/transport-server-client",
"version": "1.0.0",
"description": "Modular TypeScript client library for RobotHub TransportServer - 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/index.js",
"types": "./dist/video/index.d.ts"
},
"./robotics": {
"import": "./dist/robotics/index.js",
"types": "./dist/robotics/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm --sourcemap && bunx tsc --emitDeclarationOnly --declaration --outDir dist",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"typecheck": "bun run tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "bun run clean"
},
"keywords": [
"robothub",
"transport-server",
"webrtc",
"video-streaming",
"robotics",
"real-time",
"typescript",
"client-library"
],
"author": "Julien Blanchon",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/bun": "^1.2.15",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julien-blanchon/RobotHub-TransportServer/#main:client/js"
},
"bugs": {
"url": "https://github.com/julien-blanchon/RobotHub-TransportServer/#main:client/js"
},
"homepage": "https://github.com/julien-blanchon/RobotHub-TransportServer/#main:client/js",
"engines": {
"bun": ">=1.0.0"
},
"private": true
}