-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@point-of-sale/system-receipt-printer",
"version": "2.0.1",
"type": "module",
"exports": {
"import": "./dist/system-receipt-printer.mjs",
"require": "./dist/system-receipt-printer.cjs"
},
"module": "dist/system-receipt-printer.mjs",
"main": "dist/system-receipt-printer.cjs",
"repository": {
"type": "git",
"url": "git+https://github.com/NielsLeenheer/SystemReceiptPrinter.git"
},
"keywords": [
"receipt",
"printerdriver",
"printer",
"escpos",
"star",
"epson"
],
"author": "Niels Leenheer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NielsLeenheer/SystemReceiptPrinter/issues"
},
"homepage": "https://github.com/NielsLeenheer/SystemReceiptPrinter#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"rollup": "^3.20.7"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist"
],
"dependencies": {
"@grandchef/node-printer": "^0.8.0",
"@mapbox/node-pre-gyp": "^1.0.11"
}
}