-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "node-dymo-printer",
"version": "1.0.2",
"description": "A lightweight, zero-dependency Node.js library for DYMO LabelWriter 400/450 series printers. Pure JavaScript, cross-platform, and functions without the DYMO SDK or Web Services.",
"homepage": "https://github.com/kozmoz/node-dymo-printer",
"type": "module",
"exports": {
".": {
"import": "./dist/dymo-services.js"
}
},
"scripts": {
"build": "rm -fr dist && mkdir dist && tsc"
},
"bin": {
"node-dymo-printer": "./bin/node-dymo-printer"
},
"repository": {
"type": "git",
"url": "https://github.com/kozmoz/node-dymo-printer.git"
},
"keywords": [
"DYMO",
"LabelWriter",
"DYMO LabelWriter 450"
],
"author": "Rob Juurlink",
"license": "ISC",
"dependencies": {
"cli": "1.0.1",
"jimp": "1.6.0"
},
"devDependencies": {
"@types/node": "25.0.3",
"typescript": "5.9.3"
},
"files": [
"dist/",
"bin/",
"demo*"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}