UNPKG

starlink-node

Version:

Node.js package for communication and control of Starlink terminals locally

67 lines (66 loc) 1.58 kB
{ "name": "starlink-node", "version": "1.0.0", "description": "Node.js package for communication and control of Starlink terminals locally", "main": "index.js", "types": "index.d.ts", "bin": { "starlink-status": "./bin/starlink-status" }, "files": [ "dist/**/*", "proto/**/*", "bin/**/*", "index.js", "index.d.ts", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "prepare": "npm run build" }, "keywords": [ "starlink", "satellite", "internet", "terminal", "dishy", "grpc", "spacex" ], "author": "Jacob Ross jacob.r@syntaxindustries.com", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/jacobrsyntaxindustries/starlink-node.git" }, "bugs": { "url": "https://github.com/jacobrsyntaxindustries/starlink-node/issues" }, "homepage": "https://github.com/jacobrsyntaxindustries/starlink-node#readme", "dependencies": { "@grpc/grpc-js": "^1.9.0", "@grpc/proto-loader": "^0.7.0", "protobufjs": "^7.2.0" }, "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "prettier": "^3.0.0", "ts-jest": "^29.0.0", "ts-node": "^10.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" } }