-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.6 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
{
"name": "node-hp-scan-to",
"version": "1.10.0",
"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"
},
"files": [
"dist",
"README.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/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/xml2js": "^0.4.14",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"nock": "^14.0.11",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"axios": "^1.13.6",
"bonjour-service": "^1.3.0",
"commander": "^14.0.3",
"config": "^4.4.1",
"dateformat": "^5.0.3",
"form-data": "^4.0.5",
"jspdf": "^4.2.1",
"nanoid": "^5.1.7",
"xml2js": "^0.6.2",
"zod": "^4.3.6"
},
"packageManager": "pnpm@9.5.0"
}