Initial commit: Epson ePOS Node backend + Vue3 UI (printer matricial2)

This commit is contained in:
2025-09-27 16:06:57 -06:00
commit f3c13b356b
26 changed files with 5015 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "printer-central",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"scripts": {
"start": "node src/server.js",
"dev": "concurrently -n server,client -c auto \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "PORT=3030 nodemon --quiet --watch src --ext js src/server.js",
"dev:client": "vite",
"build": "vite build --outDir public",
"test:1": "node scripts/tests/01_text_simple.js",
"test:2": "node scripts/tests/02_align_cut.js",
"test:3": "node scripts/tests/03_font_size.js",
"test:4": "node scripts/tests/04_batch_feeds.js",
"test:5": "node scripts/tests/05_barcode.js",
"test:6": "node scripts/tests/06_qr.js",
"test:7": "node scripts/tests/07_pulse.js",
"test:all": "node scripts/test_all.js",
"print:ref": "node scripts/print_referencia.js"
},
"dependencies": {
"axios": "^1.7.2",
"express": "^4.19.2",
"jimp": "^0.22.12"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.4",
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"vite": "^5.4.20",
"vue": "^3.5.22"
}
}