Files
KX-Bridge-Release/package.json
2026-06-24 15:28:10 -05:00

23 lines
676 B
JSON

{
"name": "kx-bridge",
"version": "0.9.0",
"description": "Moonraker-compatible bridge for Anycubic Kobra X",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"prettier-plugin-sort-json": "^4.2.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:js": "prettier --write \"web/**/*.js\" \"*.js\"",
"format:json": "prettier --write \"*.json\" \"web/**/*.json\"",
"format:web": "prettier --write \"web/**/*.{js,json,html,css,yml,yaml,md}\"",
"format": "npm run format:web"
}
}