@antontranelis/money-printer 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@antontranelis/money-printer",
3
+ "version": "1.0.0",
4
+ "description": "Create personalized time vouchers that look like real currency. React components for voucher generation with PDF export.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/yourusername/money-printer.git"
10
+ },
11
+ "homepage": "https://yourusername.github.io/money-printer",
12
+ "keywords": [
13
+ "voucher",
14
+ "gift",
15
+ "pdf",
16
+ "generator",
17
+ "zeitgutschein",
18
+ "react",
19
+ "time-voucher",
20
+ "gift-card"
21
+ ],
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "require": "./dist/index.cjs"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "public/templates",
35
+ "README.md"
36
+ ],
37
+ "sideEffects": false,
38
+ "scripts": {
39
+ "dev": "vite",
40
+ "build": "tsc -b && vite build",
41
+ "build:lib": "tsc -b && vite build --config vite.lib.config.ts",
42
+ "lint": "eslint .",
43
+ "preview": "vite preview",
44
+ "prepublishOnly": "npm run build:lib"
45
+ },
46
+ "peerDependencies": {
47
+ "react": "^18.0.0 || ^19.0.0",
48
+ "react-dom": "^18.0.0 || ^19.0.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "react": {
52
+ "optional": false
53
+ },
54
+ "react-dom": {
55
+ "optional": false
56
+ }
57
+ },
58
+ "dependencies": {
59
+ "jspdf": "^2.5.2",
60
+ "zustand": "^5.0.2"
61
+ },
62
+ "devDependencies": {
63
+ "@eslint/js": "^9.17.0",
64
+ "@tailwindcss/vite": "^4.0.0",
65
+ "@types/node": "^25.0.3",
66
+ "@types/react": "^19.0.2",
67
+ "@types/react-dom": "^19.0.2",
68
+ "@vitejs/plugin-react": "^4.3.4",
69
+ "daisyui": "^5.0.0",
70
+ "eslint": "^9.17.0",
71
+ "eslint-plugin-react-hooks": "^5.0.0",
72
+ "eslint-plugin-react-refresh": "^0.4.16",
73
+ "globals": "^15.14.0",
74
+ "react": "^19.0.0",
75
+ "react-dom": "^19.0.0",
76
+ "tailwindcss": "^4.0.0",
77
+ "typescript": "~5.7.2",
78
+ "typescript-eslint": "^8.18.2",
79
+ "vite": "^6.0.5",
80
+ "vite-plugin-dts": "^4.5.4"
81
+ }
82
+ }