obd-raw-data-parser
Version:
A lightweight TypeScript library for parsing OBD-II raw data into human readable format. Based on the excellent work of obd-utils by Nishkalkashyap.
79 lines (78 loc) • 2.13 kB
JSON
{
"name": "obd-raw-data-parser",
"version": "1.0.22",
"description": "A lightweight TypeScript library for parsing OBD-II raw data into human readable format. Based on the excellent work of obd-utils by Nishkalkashyap.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
}
},
"files": [
"dist/src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.test.json",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"semantic-release": "semantic-release",
"example": "ts-node examples/basic-usage.ts",
"ci": "npm run lint && npm run test && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"obd",
"obd2",
"obdii",
"car",
"diagnostic",
"parser",
"automotive",
"vehicle",
"ecu",
"elm327"
],
"author": "Rakshit Bharat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rakshitbharat/obd-raw-data-parser.git"
},
"bugs": {
"url": "https://github.com/rakshitbharat/obd-raw-data-parser/issues"
},
"homepage": "https://github.com/rakshitbharat/obd-raw-data-parser#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/ms": "^2.1.0",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ms": "^2.1.3",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "~5.8.2"
},
"dependencies": {
"text-decoding": "^1.0.0"
}
}