Skip to content

Commit

Permalink
Merge pull request #2 from kemkriszt/dev
Browse files Browse the repository at this point in the history
0.2.0: Base printer implementation
  • Loading branch information
kemkriszt authored Dec 30, 2023
2 parents 1abe862 + b90e12f commit 2297fac
Show file tree
Hide file tree
Showing 30 changed files with 815 additions and 181 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ node_modules
/coverage/

# Build files
/dist
/dist
/dist-example
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Raw Thermal Print
# Label Print

This package provides a js based implementation for variouse languages used for label printers

Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raw-thermal-print",
"version": "0.1.0",
"name": "label-print",
"version": "0.2.0",
"description": "js package providing an abstraction over different thermal printer languages",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -10,6 +10,7 @@
],
"scripts": {
"build": "tsup",
"examples": "npx ts-node -r tsconfig-paths/register src/examples",
"test": "jest",
"test-watch": "jest --watch"
},
Expand All @@ -26,11 +27,13 @@
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/w3c-web-usb": "^1.0.10",
"image-pixels": "^2.2.2"
"image-pixels": "^2.2.2",
"usb": "^2.11.0"
}
}
Loading

0 comments on commit 2297fac

Please sign in to comment.