This commit is contained in:
seb
2026-07-09 10:57:37 +02:00
commit 9466d295a4
7 changed files with 855 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "escpos-proxy",
"version": "1.0.0",
"description": "Minimal ESC/POS print proxy: forwards raw jobs to a target printer and logs each job to disk (cut command or connection drop delimits a job).",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test:send": "node test-send.mjs",
"parse": "node parse-log.mjs"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^17.4.2"
}
}