{ "name": "@michaelhart/meshcore-decoder", "version": "0.2.7", "description": "TypeScript library for decoding MeshCore packets", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "meshcore-decoder": "./dist/cli.js" }, "scripts": { "dev": "ts-node src/index.ts", "test": "jest", "test:watch": "jest --watch", "build": "tsc", "build:watch": "tsc --watch", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts" }, "keywords": [ "meshcore", "packet", "decoder" ], "author": "Michael Hart (https://github.com/michaelhart)", "license": "MIT", "browser": { "crypto": false, "fs": false }, "dependencies": { "@noble/ed25519": "^2.3.0", "chalk": "^4.1.2", "commander": "^12.0.0", "crypto-js": "^4.2.0" }, "devDependencies": { "@babel/core": "^7.28.4", "@babel/preset-env": "^7.28.3", "@types/crypto-js": "^4.2.2", "@types/jest": "^30.0.0", "@types/node": "^24.5.2", "@typescript-eslint/eslint-plugin": "^8.44.0", "@typescript-eslint/parser": "^8.44.0", "babel-jest": "^30.1.2", "eslint": "^9.36.0", "jest": "^30.1.3", "prettier": "^3.6.2", "ts-jest": "^29.4.4", "ts-node": "^10.9.2", "typescript": "^5.9.2" }, "repository": { "type": "git", "url": "git+https://github.com/michaelhart/meshcore-decoder.git" } }