-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "node-hp-scan-to",
"version": "1.11.1",
"description": "Scan document to Computer for HP All-in-One Printers",
"keywords": [
"Officejet",
"scan",
"cli",
"computer"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/index.js",
"scripts": {
"prestart": "node getCommitId.js",
"start": "tsx src/index.ts",
"start:single-scan": "tsx src/index.ts single-scan",
"start:clear-registrations": "tsx src/index.ts clear-registrations",
"start:adf-autoscan": "tsx src/index.ts adf-autoscan",
"start-debug": "tsx src/index.ts -D",
"prebuild": "node getCommitId.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -p ./tsconfig.typecheck.json --noEmit",
"build": "tsc -p .",
"built-start": "tsc -p . && node --trace-warnings ./dist/index.js",
"start-dev": "tsx watch src/index.ts",
"prepublishOnly": "npm run prebuild && tsc -p ./ --outDir dist/",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "npm run typecheck && mocha",
"test:watch": "mocha --watch",
"test:coverage": "c8 --reporter=lcov --reporter=text --exclude=\"test/\" mocha",
"e2e": "bash scripts/live-test.sh"
},
"files": [
"dist",
"README.md",
"SUPPORTED_DEVICES.md"
],
"engines": {
"node": ">=20.11.0"
},
"author": {
"email": "manuc66@gmail.com",
"name": "Emmanuel Counasse",
"url": "https://github.com/manuc66"
},
"homepage": "https://github.com/manuc66/node-hp-scan-to",
"bugs": "https://github.com/manuc66/node-hp-scan-to/issues",
"repository": {
"type": "git",
"url": "https://github.com/manuc66/node-hp-scan-to.git"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/config": "^4.4.0",
"@types/dateformat": "^5.0.3",
"@types/is-docker": "^2.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^26.4.0",
"@types/pino": "^7.0.5",
"@types/xml2js": "^0.4.14",
"c8": "^12.0.0",
"chai": "^6.2.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.11.0",
"mocha": "^12.0.0",
"nock": "^14.0.17",
"prettier": "^3.9.6",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0"
},
"dependencies": {
"@commander-js/extra-typings": "^15.0.0",
"axios": "^1.20.0",
"bonjour-service": "^1.4.4",
"commander": "^15.0.0",
"config": "^5.0.1",
"dateformat": "^5.0.3",
"form-data": "^4.0.6",
"is-docker": "^4.0.0",
"jspdf": "^4.2.1",
"nanoid": "^6.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sanitize-filename": "^1.6.4",
"xml2js": "^0.6.2",
"zod": "^4.5.4"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}