-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 952 Bytes
/
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
{
"name": "browser-thermal-printer",
"version": "0.0.1",
"description": "Print on Epson and Star thermal printers in a browser",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"scripts": {
"start": "tsc --noEmit && node dist/core.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Klemen1337/browser-thermal-printer"
},
"keywords": [
"thermal printer",
"thermal",
"printer",
"epson",
"star"
],
"author": "Klemen Kastelic <klemen.kast@gmail.com> (http://kastelic.net/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Klemen1337/browser-thermal-printer/issues"
},
"homepage": "https://github.com/Klemen1337/browser-thermal-printer",
"dependencies": {
"buffer": "^6.0.3",
"png.js": "^0.2.1",
"unorm": "^1.6.0"
},
"devDependencies": {
"@types/png.js": "^0.2.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
}
}