-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 846 Bytes
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
{
"name": "funprint",
"version": "1.0.0",
"description": "Drag-drop any picture into your terminal and print it on an 80mm/58mm ESC/POS thermal receipt printer. Cross-platform CLI photo booth.",
"type": "module",
"bin": {
"funprint": "src/cli.mjs"
},
"scripts": {
"start": "node src/cli.mjs"
},
"keywords": [
"thermal-printer",
"escpos",
"receipt-printer",
"cli",
"80mm",
"58mm",
"polaroid",
"munbyn",
"epson",
"dithering"
],
"author": "Kevin Gallaccio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KevinGallaccio/funprint.git"
},
"engines": {
"node": ">=18"
},
"files": [
"src",
"scripts",
"README.md",
"LICENSE"
],
"dependencies": {
"sharp": "^0.34.5",
"terminal-image": "^4.0.0"
}
}