-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.76 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "paycheck-planner",
"private": true,
"version": "0.3.3",
"description": "Desktop paycheck planning and budget management application.",
"author": {
"name": "Paycheck Planner",
"email": "paycheckplannersupport@gmail.com"
},
"license": "MIT",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"postinstall": "electron-rebuild || true",
"sync-version": "node scripts/sync-version.js",
"generate-icons": "node scripts/generate-icons.js",
"start": "open ./release/mac-arm64/Paycheck\\ Planner.app",
"dev": "npm run sync-version && vite",
"dev:inspector": "npm run sync-version && OPEN_DEVTOOLS=true vite",
"build": "npx vite build && npm run sync-version",
"build:dir": "npm run sync-version && node scripts/generate-icons.js --if-present && tsc -b && vite build && electron-builder --dir",
"build:mac": "npm run sync-version && node scripts/generate-icons.js --if-present && tsc -b && vite build && electron-builder --mac",
"build:win": "npm run sync-version && node scripts/generate-icons.js --if-present && tsc -b && vite build && electron-builder --win",
"build:linux": "npm run sync-version && node scripts/generate-icons.js --if-present && tsc -b && vite build && electron-builder --linux",
"build:all": "npm run sync-version && node scripts/generate-icons.js --if-present && tsc -b && vite build && electron-builder --mac --win --linux",
"rebuild-native": "electron-rebuild",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint .",
"preview": "vite preview"
},
"build": {
"appId": "com.paycheckplanner.app",
"productName": "Paycheck Planner",
"icon": "build/icon.png",
"fileAssociations": [
{
"ext": "budget",
"name": "Paycheck Planner Budget",
"description": "Paycheck Planner budget file",
"role": "Editor",
"icon": "build/budget-file-icon"
}
],
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"icon": "build/icon.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.finance",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": true
},
"win": {
"icon": "build/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"icon": "build/icon.png",
"maintainer": "Paycheck Planner <paycheckplannersupport@gmail.com>",
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
"crypto-js": "^4.2.0",
"d3-sankey": "^0.12.3",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"keytar": "^7.9.0",
"pdf-lib": "^1.17.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.13.1"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^9.39.1",
"@types/crypto-js": "^4.2.2",
"@types/d3-sankey": "^0.12.5",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"electron": "^41.0.2",
"electron-builder": "^26.8.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"png2icons": "^2.0.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.1.0",
"wait-on": "^9.0.4"
}
}