forked from kazinayeem/react-pos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.12 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-receipts",
"version": "3.0.2",
"description": "A powerful React POS (Point-of-Sale) printing engine with customizable receipt templates and layout options.",
"author": "Mohammad Ali Nayeem",
"license": "MIT",
"keywords": [
"react",
"react-hooks",
"react-library",
"typescript",
"pos",
"receipt",
"invoice",
"invoice-generator",
"receipt-printer",
"thermal-printer",
"pos-system",
"point-of-sale",
"billing",
"printing",
"print-receipt",
"react-pos",
"print-engine",
"react-printing",
"react-pos-engine",
"receipt-layout",
"a4-print",
"pos-receipt",
"react-invoice",
"print-template",
"business-invoice",
"store-invoice",
"ecommerce-receipt",
"react-utils",
"invoice-printing",
"receipt-template",
"pos-print",
"cashier-receipt",
"react-billing",
"custom-receipt",
"print-preview",
"pdf-receipt",
"pdf-invoice",
"thermal-receipt",
"print-management"
],
"repository": {
"type": "git",
"url": "https://github.com/0necontroller/react-receipts"
},
"bugs": {
"url": "https://github.com/0necontroller/react-receipts/issues"
},
"homepage": "https://github.com/0necontroller/react-receipts#readme",
"type": "module",
"main": "dist/react-receipts.umd.js",
"module": "dist/react-receipts.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite --open",
"build": "vite build && tsc --emitDeclarationOnly",
"lint": "eslint . --ext .ts,.tsx",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"preview": "vite preview"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"lucide-react": "^0.552.0",
"path": "^0.12.7",
"react-receipts": "^3.0.2"
},
"devDependencies": {
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
}
}