-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.31 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.31 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
98
99
100
101
{
"name": "thermal-label-cli",
"version": "0.5.0",
"description": "Unified CLI for thermal label printers — auto-detects all installed drivers",
"keywords": [
"thermal-label",
"printer",
"cli",
"dymo",
"brother",
"label"
],
"type": "module",
"author": "Mannes Brak",
"license": "MIT",
"homepage": "https://github.com/thermal-label/cli",
"repository": {
"type": "git",
"url": "https://github.com/thermal-label/cli.git"
},
"bugs": {
"url": "https://github.com/thermal-label/cli/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mannes"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/mannes"
}
],
"files": [
"bin",
"dist",
"README.md"
],
"bin": {
"thermal-label": "./bin/thermal-label.js"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format": "prettier --write src"
},
"prettier": "@mbtech-nl/prettier-config",
"dependencies": {
"@mbtech-nl/bitmap": "^1.3.0",
"@thermal-label/contracts": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"jpeg-js": "^0.4.4",
"pngjs": "^7.0.0"
},
"peerDependencies": {
"@thermal-label/brother-ql-node": ">=0.5.0",
"@thermal-label/labelmanager-node": ">=0.5.0",
"@thermal-label/labelwriter-node": ">=0.5.0"
},
"peerDependenciesMeta": {
"@thermal-label/brother-ql-node": {
"optional": true
},
"@thermal-label/labelmanager-node": {
"optional": true
},
"@thermal-label/labelwriter-node": {
"optional": true
}
},
"devDependencies": {
"@mbtech-nl/eslint-config": "^1.1.0",
"@mbtech-nl/prettier-config": "^1.1.0",
"@mbtech-nl/tsconfig": "^1.1.0",
"@types/node": "^22.0.0",
"@types/pngjs": "^6.0.5",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typescript": "~5.5.0",
"vitest": "^2.1.0"
}
}