-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.25 KB
/
package.json
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
{
"name": "node-dymo-printer",
"version": "0.4.2",
"description": "A library to print labels from Node.js. Pure javascript cross-platform with no platform specific dependencies.",
"homepage": "https://github.com/kozmoz/node-dymo-printer",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/ems/dymo-services.js",
"require": "./dist/cjs/dymo-services.js"
}
},
"type": "module",
"scripts": {
"build": "rm -fr dist && mkdir dist && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && . ./fixup.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": "0.16.1"
},
"devDependencies": {
"@types/node": "18.0.1",
"typescript": "4.7.4"
},
"files": [
"dist/",
"bin/",
"demo*"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}