-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (120 loc) · 3.41 KB
/
package.json
File metadata and controls
126 lines (120 loc) · 3.41 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
124
125
126
{
"name": "blinkr",
"version": "0.1.0",
"description": "Break and blink reminder app for eye wellness",
"private": true,
"type": "module",
"main": "electron/main.js",
"author": "Varun Dhand",
"scripts": {
"dev": "concurrently \"vite\" \"npm run electron-dev\"",
"electron-dev": "electron .",
"build": "tsc -b && vite build",
"electron:build": "rm -rf dist dist-electron && npm run build && electron-builder",
"electron:build:mac": "rm -rf dist dist-electron && npm run build && electron-builder --mac",
"electron:build:win": "rm -rf dist dist-electron && npm run build && electron-builder --win --x64",
"electron:build:linux": "rm -rf dist dist-electron && npm run build && electron-builder --linux",
"lint": "eslint .",
"preview": "vite preview"
},
"build": {
"appId": "com.varundhand.blinkr",
"productName": "Blinkr",
"copyright": "Copyright © 2025 Varun Dhand",
"directories": {
"output": "dist-electron",
"buildResources": "build"
},
"files": [
"dist/**/*",
"electron/**/*",
"overlays/**/*",
"package.json"
],
"extraResources": [
{
"from": "src/assets",
"to": "assets",
"filter": ["**/*"]
},
{
"from": "electron/iconTemplate.png",
"to": "iconTemplate.png"
}
],
"npmRebuild": false,
"nodeGypRebuild": false,
"mac": {
"category": "public.app-category.productivity",
"icon": "src/assets/app-icon.png",
"target": [
{ "target": "dmg", "arch": ["x64", "arm64"] },
{ "target": "zip", "arch": ["x64", "arm64"] }
],
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"win": {
"icon": "src/assets/app-icon.png",
"target": [
{ "target": "nsis", "arch": ["x64"] }
]
},
"linux": {
"icon": "src/assets/app-icon.png",
"target": ["AppImage", "deb"],
"category": "Utility"
},
"dmg": {
"contents": [
{ "x": 130, "y": 220 },
{ "x": 410, "y": 220, "type": "link", "path": "/Applications" }
],
"window": { "width": 540, "height": 400 }
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"dependencies": {
"@tailwindcss/cli": "^4.1.16",
"@tailwindcss/postcss": "^4.1.16",
"@tailwindcss/vite": "^4.1.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.5",
"electron-store": "^11.0.2",
"framer-motion": "^12.23.24",
"lucide-react": "^0.548.0",
"mailgun-js": "^0.22.0",
"motion": "^12.23.24",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"electron": "^38.4.0",
"electron-builder": "^26.0.12",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.16",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7"
}
}