@rflafla/f1-udp-parser
Version:
The F1 series of games support the outputting of key game data via a UDP data stream. This data can be interpreted by external apps or connected peripherals for a range of different uses, including providing additional telemetry information, customised HU
98 lines (97 loc) • 1.98 kB
JSON
{
"name": "@rflafla/f1-udp-parser",
"version": "1.1.6",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deltazeroproduction/f1-udp-parser.git"
},
"dependencies": {
"binary-parser": "^1.5.0",
"struct": "^0.0.12"
},
"devDependencies": {
"@types/binary-parser": "^1.5.0",
"@types/jest": "^29.2.5",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"gts": "^3.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run build && node build/src/playground/index.js",
"build": "tsc",
"build:link": "npm run build && npm link",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"test": "npm run build && node test/test.js",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css}": [
"gts fix",
"git add"
]
},
"keywords": [
"automotive",
"grand prix",
"f12022",
"f122",
"f1 2022",
"f12023",
"f123",
"f1 2023",
"f12024",
"f124",
"f1 2024",
"f1 2025",
"formula 1",
"f1",
"codemasters",
"EA",
"udp",
"telemetry",
"racing",
"simracing",
"gaming",
"formula",
"ps4",
"ps5",
"xbox",
"xbox one",
"playstation",
"playstation 4",
"playstation 5",
"esports",
"e sports",
"e-sports",
"f1 sim racing",
"videogame",
"podium",
"dzp",
"delta zero",
"delta zero production"
]
}