node-hp-scan-to 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
Little command line program that allow to send scan from device to computer.
|
|
9
9
|
|
|
10
|
+
Can be run with npx : `npx node-hp-scan-to` or with Docker (see below)
|
|
11
|
+
|
|
10
12
|
Developed and tested for the following HP All-in-One Printers:
|
|
11
13
|
- HP Officejet 6500A Plus
|
|
12
14
|
- HP Deskjet 3520
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-hp-scan-to",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Scan document to Computer for HP All-in-One Printers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Officejet",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"devDependencies": {
|
|
47
|
+
"@types/dateformat": "^5.0.0",
|
|
47
48
|
"@types/bonjour": "^3.5.9",
|
|
48
49
|
"@types/chai": "^4.3.1",
|
|
49
50
|
"@types/mocha": "^9.1.1",
|
|
@@ -56,17 +57,16 @@
|
|
|
56
57
|
"prettier": "^2.4.1",
|
|
57
58
|
"ts-mockito": "^2.6.1",
|
|
58
59
|
"ts-node": "^10.7.0",
|
|
59
|
-
"typescript": "^4.4.4"
|
|
60
|
+
"typescript": "^4.4.4",
|
|
61
|
+
"eslint": "^8.15.0",
|
|
62
|
+
"yarn": "^1.22.18"
|
|
60
63
|
},
|
|
61
64
|
"dependencies": {
|
|
62
|
-
"@types/dateformat": "^5.0.0",
|
|
63
65
|
"axios": "^0.27.2",
|
|
64
66
|
"bonjour": "^3.5.0",
|
|
65
67
|
"commander": "^9.0.0",
|
|
66
68
|
"dateformat": "^4.6.3",
|
|
67
|
-
"eslint": "^8.15.0",
|
|
68
69
|
"xml2js": "^0.4.23",
|
|
69
|
-
"jspdf": "^2.5.1"
|
|
70
|
-
"yarn": "^1.22.18"
|
|
70
|
+
"jspdf": "^2.5.1"
|
|
71
71
|
}
|
|
72
72
|
}
|