-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "web-receiptline-printer",
"version": "0.3.0",
"description": "A small library for printing ReceiptLine documents to various receipt printers from a browser.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Cellivar/WebReceiptLinePrinter"
},
"author": "Cellivar Kangaroorat <cellivar.kangaroorat@gmail.com> (https://github.com/cellivar)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cellivar/WebReceiptLinePrinter/issues"
},
"homepage": "https://github.com/Cellivar/WebReceiptLinePrinter",
"keywords": [
"receipt_printer",
"receiptline",
"webusb",
"epson",
"tm-t88v"
],
"scripts": {
"build": "tsc && vite build",
"lint": "eslint .",
"test": "vitest --run",
"test:snapshot": "vitest --run -u",
"serve-local": "export PORT=4444 || set PORT=4444 && serve .",
"all": "npm run build && npm run lint && npm run test"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/web-receiptline-printer.js",
"require": "./dist/web-receiptline-printer.umd.csj",
"default": "./dist/web-receiptline-printer.js"
},
"./readme": "./readme.md"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.8",
"@types/w3c-web-usb": "^1.0.10",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"happy-dom": "^15.11.7",
"https-localhost": "^4.7.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.6"
},
"dependencies": {
"web-device-mux": "^0.5.0"
}
}