meshcore.js/package.json
Luc Patiny 3f899c8445 chore: enforce prettier configuration
In order to avoid reformatting of the code this PR add a prettier configuration as well as scripts to automatically format apply the rules
2025-11-17 06:10:08 +01:00

21 lines
500 B
JSON

{
"name": "@liamcottle/meshcore.js",
"version": "1.10.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Liam Cottle <liam@liamcottle.com>",
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.8.1",
"serialport": "^13.0.0"
},
"devDependencies": {
"prettier": "^3.6.2"
}
}